blob: aa7d7bfa9726405ede91393e0eb2a2a16c7da9f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet" href="{{ get_url(path='style.css', cachebust=true) }}">
{% block rss %}
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ get_url(path="atom.xml", trailing_slash=false) }}">
{% endblock %}
<title>
{% if page.title %} {{ page.title }} | {{ config.title }}
{% elif section.title %} {{ section.title }} | {{ config.title }}
{% elif config.title %} {{ config.title }}
{% else %} Post {% endif %}
</title>
</head>
<body>
{% include "partials/header.html" %}
<main>
{% block content %} {% endblock content %}
{% include "partials/footer.html" %}
</main>
</body>
</html>
|