- added ADMIN index file

- cleanup config
- added Asset Controller
This commit is contained in:
Maurice Grönwoldt 2020-05-31 17:00:05 +02:00
commit fe7bacd2f6
14 changed files with 300 additions and 33 deletions

View file

@ -1,3 +1,9 @@
<?php
use Venom\Config;
use Venom\Views\Asset;
?>
<!doctype html>
<html lang="en">
<head>
@ -6,11 +12,17 @@
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>VenomBase</title>
<?php
Asset::get()->renderCSS();
?>
</head>
<body>
<header>
VenomCMS
</header>
<?= $this->templateData ?>
<?php
Asset::get()->renderJS();
?>
</body>
</html>