mobmash.click/html/about/index.php
2024-08-06 23:03:34 +02:00

16 lines
No EOL
335 B
PHP

<?php
require_once __DIR__ . '/../../core.php';
require_once __DIR__ . '/../../lib/stats.php';
$stats = getStatistics();
$mobStats = getMobStats();
$title = "MobMash - About";
$content = function () use ($stats, $mobStats) {
require __DIR__ . '/../../view/pages/about.php';
};
require_once __DIR__ . '/../../view/layout.php';