tinytalk/templates/webmaster.php

16 lines
480 B
PHP

<?php
include_once __DIR__ . '/../templates/elements/html-header.php';
include_once __DIR__ . '/../templates/elements/admin/header.php';
?>
<div class="w-full flex">
<div class="w-1/5 border-r border-b border-black bg-gray-100">
<?php
include_once __DIR__ . '/../templates/sidebar/admin/stats.php';
?>
</div>
<div class="w-4/5 border-b border-black p-4">
<h1 class="text-3xl font-bold italic">overview</h1>
</div>
</div>
</body>
</html>