aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
blob: ac9e1af3f4da3333e7d3ce50581cbe220e36d41a (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
29
<!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) }}">
   <link rel="preconnect" href="https://fonts.bunny.net">
   {% 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>