2024-09-30 14:14:56 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
2024-10-26 20:09:30 +00:00
|
|
|
<meta name="description" content="{{ page.description }}">
|
2024-09-30 14:14:56 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2024-09-30 14:48:08 +00:00
|
|
|
<footer>
|
|
|
|
{% include footer.html %}
|
|
|
|
</footer>
|
|
|
|
</body>
|
2024-09-30 14:14:56 +00:00
|
|
|
</html>
|