blob: 62629ff15e0245955f057c996af73543c9e9bbd6 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{% import "header_macros.html" as header_macros %}
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Rubén Beltrán del Río">
<meta name="description" content="{{ config.description }}">
<meta name="theme-color" content="#0000f5">
<meta name="fediverse:creator" content="@ruben@friendship.quest" />
<title>Rubén Beltrán del Río — {{ config.title }}</title>
<link rel="canonical" href="{{current_url | safe}}">
<link rel="preload" href="/font/LibreCaslonCondensed[wdth,wght].woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/font/LibreCaslonCondensed-Italic[wght].woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/font/LibreCaslonText[wght].woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/font/LibreCaslonText-Italic[wght].woff2" as="font" type="font/woff2" crossorigin>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<link href="//fastly-cloud.typenetwork.com/projects/8926/fontface.css?6977e213" rel="stylesheet" type="text/css">
<link rel="author" href="humans.txt">
<link rel="icon" href="/img/favicon.png" />
<link rel="alternate" href="/atom.xml" hreflang="en" title="Atom feed, all posts.">
<script type="module" src="/js/animation.js"></script>
</head>
<body>
{% block header %}
{{ header_macros::main_header() }}
{% endblock %}
<main>
{% block content %}{% endblock %}
</main>
<footer>
<menu>
<ul>
<li><a href="/impressum">Impressum</a></li>
<li><a href="/privacy-policy">Privacy Policy</a></li>
<li><a href="/blog">Blog</a></li>
<li>Check out <a href="https://r.bdr.sh">my personal website.</a></li>
</ul>
</menu>
</footer>
</body>
</html>
|