mirror of
https://git.bakhai.co.in/FbIN/4Get.git
synced 2025-11-04 20:11:32 +05:30
15 lines
292 B
PHP
15 lines
292 B
PHP
<?php
|
|
|
|
include "data/config.php";
|
|
include "lib/frontend.php";
|
|
$frontend = new frontend();
|
|
|
|
$images = glob("");
|
|
|
|
echo $frontend->load(
|
|
"home.html",
|
|
[
|
|
"server_short_description" => htmlspecialchars(config::SERVER_SHORT_DESCRIPTION),
|
|
"banner" => $images[rand(0, count($images) - 1)]
|
|
]
|
|
);
|