blob: 15e809df66c76da96684d5cc7762099bdc4fc581 (
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
30
31
32
33
34
35
36
|
<!doctype html>
<html lang="en">
<head>
{% block head %}
<meta charset="UTF-8" />
<title>{% block title %}{% endblock title %}</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta
name="description"
content="{% block description %}{% endblock description %}"
/>
<link rel="stylesheet" href="{{ get_url(path='main.css') }}" />
<link rel="sitemap" href="{{ get_url(path="sitemap.xml") }}" />
{% endblock head %}
</head>
<body>
<h1><b>getchoo's website 🚀</b></h1>
<nav>
{% block nav %}
<div id="nav_links">
{% for link in config.extra.nav_links %}
<a href="{{ link.url }}">{{ link.name }}</a>
{% endfor %}
</div>
<hr />
{% endblock nav %}
</nav>
{% block content %}{% endblock content %}
<footer>
{% block footer %}
<a href="{{ config.extra.repository_url }}">source code</a>
{% endblock footer %}
</footer>
</body>
</html>
|