dragon-forks/controllers/site/pages.php
2025-03-28 21:13:44 +01:00

21 lines
No EOL
581 B
PHP

<?php
function index() {
global $renderer;
// Prepare data for the view
$renderer->prepare('title', 'Home Page');
$renderer->prepare('content', 'Welcome to the home page!');
// Display the view using the namespace
$renderer->display('home');
}
function closed() {
global $renderer;
// Prepare data for the view
$renderer->prepare('title', 'Game closed');
$renderer->prepare('content', 'The game is currently closed for maintanence. Please check back later.');
// Display the view using the namespace
$renderer->display('home');
}