DevBlog/_layouts/default.liquid
2025-01-14 20:54:28 +01:00

19 lines
429 B
Plaintext

<!DOCTYPE html>
<html>
<head>
{% include "head.liquid" %}
</head>
<body>
<header>
{% include "header.liquid" %}
</header>
<div class="container mt-4">
<!--h1 class="title">{{ page.title }}</p-->
<div class="content m-5">{{ page.content }}</p>
</div>
<footer>
{% include "footer.liquid" %}
</footer>
</body>
</html>