15 lines
411 B
HTML
15 lines
411 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<body>
|
|
{% include navigation.html %}
|
|
<h1>{{ page.title }}</h1>
|
|
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
|
|
{{ content }}
|
|
{% include footerNavbar.html %}
|
|
</body>
|
|
</html> |