hexaitos.com/_layouts/post.html

28 lines
630 B
HTML
Executable File

<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="{{ page.description }}">
<title>{{ page.title }}</title>
<link rel="stylesheet" href="/assets/css/styles.css">
<body>
{% include menu.html %}
<div class="main">
<h1>{{ page.title }}</h1>
<p style="text-align: right; font-style: italic;">This post was published on {{ page.date | date_to_string }}</p>
{{ content }}
<div class="clearfix"></div>
</div>
<footer>
{% include footer.html %}
</footer>
</body>
</html>