summaryrefslogtreecommitdiff
path: root/index.php
blob: be9897f17c8045695c17b4b43800a68725c67c1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

include "lib/frontend.php";
$frontend = new frontend();

$images = glob("banner/*");

echo $frontend->load(
	"home.html",
	[
		"body_class" => $frontend->getthemeclass(false),
		"banner" => $images[rand(0, count($images) - 1)]
	]
);