summaryrefslogtreecommitdiffstatshomepage
path: root/templates/base.html
blob: ea70a4767eea7ed2105d20782a0558be23399def (plain) (blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{% import "macros.html" as macros -%}

{%- set description = config.description -%}

{%- if page -%}
	{%- set description = page.title -%}
{%- elif term -%}
	{%- set description = "posts tagged with #" ~ term.name -%}
{%- elif terms -%}
	{%- set description = "all tags" -%}
{%- endif -%}

{%- set title = title | default(value=description) -%}

<!DOCTYPE html>
<html lang="en">
	<head>
		<title>
			{{ config.title ~ " · " ~ title }}
		</title>
		<link rel="stylesheet" href="/style.css"/>
		<link rel="icon" href="/icon.svg"/>
		<link rel="alternate" type="application/atom+xml" title="zunzuncito" href="/atom.xml" />
		{% if term -%}
		<link rel="alternate" type="application/atom+xml" title="zunzuncito - #{{ term.name }}" href="atom.xml" />
		{% endif -%}
		<meta charset="utf-8"/>
		<meta name="viewport" content="width=device-width, initial-scale=1"/>
	</head>
	<body>
		<main>
			<header>
				<h1><a href="/">{{ config.title }}</a></h1>
				<div class="banner smaller">
					<span class="description">
						{{ description }}
					</span>
				{%- if section or term %}
					<nav class="links">
						<ul class="inline">
						{%- if section %}
							<li><a href="/1">about</a></li>
							<li><a href="/atom.xml">feed</a></li>
							<li><a href="/tags">tags</a></li>
						{%- elif term %}
							<li><a href="atom.xml">feed</a></li>
						{%- endif %}
						</ul>
					</nav>
				{%- endif %}
				</div>
			</header>
			{%- block content %}{% endblock -%}
		</main>
	</body>
</html>