mobmash.click/html/about/index.php

16 lines
335 B
PHP
Raw Normal View History

2024-08-04 09:55:19 +00:00
<?php
2024-08-04 18:56:55 +00:00
require_once __DIR__ . '/../../core.php';
2024-08-06 21:03:22 +00:00
require_once __DIR__ . '/../../lib/stats.php';
$stats = getStatistics();
$mobStats = getMobStats();
2024-08-04 09:55:19 +00:00
$title = "MobMash - About";
2024-08-06 21:03:22 +00:00
$content = function () use ($stats, $mobStats) {
2024-08-04 09:55:19 +00:00
require __DIR__ . '/../../view/pages/about.php';
};
require_once __DIR__ . '/../../view/layout.php';