Test-Branch erstellt, Dev-Area for EngineerTrooper, base Editing, theme create

This commit is contained in:
engineerTrooper 2020-09-20 12:56:04 +02:00
commit c13a18b00b
6 changed files with 89 additions and 0 deletions

View file

@ -0,0 +1,30 @@
<?php
use Venom\Core\Registry;
use Venom\Views\Asset;
$reg = Registry::getInstance();
$lang = $reg->getLang();
?>
<!doctype html>
<html lang="en">
<?php
echo $this->includeTemplate("header/head");
?>
<body>
<header>
<?= $lang->getTranslation("HEADLINE") ?>
</header>
<main>
<h1>Mami ich mag dich</h1>
<?php
$lang->getTranslation("TEST_TRANSLATION");
echo $this->templateData;
?>
</main>
<?php
Asset::get()->renderJS();
?>
</body>
</html>