First release of 2.0! :D

This commit is contained in:
Wruczek
2018-12-27 18:59:49 +01:00
parent 7396a76816
commit 628af52b54
293 changed files with 12641 additions and 3 deletions

14
src/rules.php Normal file
View File

@ -0,0 +1,14 @@
<?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);