You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
365 B
15 lines
365 B
<?php
|
|
|
|
use Wruczek\TSWebsite\Utils\TemplateUtils;
|
|
|
|
require_once __DIR__ . "/private/php/load.php";
|
|
|
|
$data = [
|
|
"pagetitle" => __get("RULES_TITLE"),
|
|
"navActiveIndex" => 4,
|
|
"paneltitle" => '<i class="fas fa-book"></i>' . __get("RULES_PANEL_TITLE"),
|
|
"panelcontent" => "Rules in <b>HTML</b>"
|
|
];
|
|
|
|
TemplateUtils::i()->renderTemplate("simple-page", $data);
|