index.php 300 B

123456789101112131415
  1. <?php
  2. include "data/config.php";
  3. include "lib/frontend.php";
  4. $frontend = new frontend();
  5. $images = glob("banner/*");
  6. echo $frontend->load(
  7. "home.html",
  8. [
  9. "server_short_description" => htmlspecialchars(config::SERVER_SHORT_DESCRIPTION),
  10. "banner" => $images[rand(0, count($images) - 1)]
  11. ]
  12. );