mirror of
https://github.com/sigmasternchen/mobmash.click
synced 2025-03-16 00:29:05 +00:00
14 lines
No EOL
342 B
PHP
14 lines
No EOL
342 B
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../../core.php';
|
|
require_once __DIR__ . '/../../lib/rating.php';
|
|
|
|
$mobs = getMobsWithMetaData();
|
|
$trends = getRatingTrends();
|
|
|
|
$title = "MobMash - Results";
|
|
$content = function () use ($mobs, $trends) {
|
|
require __DIR__ . '/../../view/pages/results.php';
|
|
};
|
|
|
|
require_once __DIR__ . '/../../view/layout.php'; |