tinytalk/templates/home.php

20 lines
631 B
PHP

<?php
include_once __DIR__ . '/../config/blog-details.php';
include_once __DIR__ . '/../templates/elements/html-header.php';
include_once __DIR__ . '/../templates/elements/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/recent-posts.php';
include_once __DIR__ . '/../templates/sidebar/categories.php';
?>
</div>
<div class="w-4/5 border-b border-black p-4">
<?php
include_once __DIR__ . '/../templates/elements/post.php';
?>
</div>
</div>
</body>
</html>