mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-15 08:09:02 +00:00
16 lines
No EOL
335 B
PHP
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'; |