4get/src/index.php
ngn ce81a54de1
All checks were successful
Build and publish the docker image / build (push) Successful in 18s
general cleanup
Signed-off-by: ngn <ngn@ngn.tf>
2025-01-19 06:42:44 +03:00

16 lines
300 B
PHP

<?php
include "data/config.php";
include "lib/frontend.php";
$frontend = new frontend();
$images = glob("banner/*");
echo $frontend->load(
"home.html",
[
"server_short_description" => htmlspecialchars(config::SERVER_SHORT_DESCRIPTION),
"banner" => $images[rand(0, count($images) - 1)]
]
);