general cleanup
All checks were successful
Build and publish the docker image / build (push) Successful in 18s
All checks were successful
Build and publish the docker image / build (push) Successful in 18s
Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
15
src/index.php
Normal file
15
src/index.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?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)]
|
||||
]
|
||||
);
|
Reference in New Issue
Block a user