diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ <?php +include "data/config.php"; include "lib/frontend.php"; $frontend = new frontend(); @@ -8,7 +9,7 @@ $images = glob("banner/*"); echo $frontend->load( "home.html", [ - "body_class" => $frontend->getthemeclass(false), + "server_short_description" => htmlspecialchars(config::SERVER_SHORT_DESCRIPTION), "banner" => $images[rand(0, count($images) - 1)] ] ); |