27 lines
525 B
HTML
Executable File
27 lines
525 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
<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>
|
|
</body>
|
|
|
|
<footer>
|
|
{% include footer.html %}
|
|
</footer>
|
|
|
|
</html>
|