2025-01-29 23:56:59 +01:00
|
|
|
{% macro navItem(title, url, hyphen=true, target='_self') %}
|
2025-01-27 02:17:27 +01:00
|
|
|
<span>
|
|
|
|
<a href="{{url}}" target="{{target}}">{{title}}</a>
|
|
|
|
{% if hyphen %} - {% endif %}
|
|
|
|
</span>
|
|
|
|
{% endmacro %}
|
|
|
|
|
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
|
2025-02-04 19:38:08 +01:00
|
|
|
<head>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
|
|
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<meta name="robots" content="index, follow" />
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<meta name="language" content="English" />
|
|
|
|
<meta name="google-site-verification" content="x17arJy33V33DYnmMYybZciXngFd8R8xn1UZRdp7qxo" />
|
|
|
|
|
|
|
|
<link rel="canonical" href="{{site.url}}{{page.url | url}}" />
|
|
|
|
|
|
|
|
{%if tags.includes("blogpost")%}
|
|
|
|
<meta property="og:type" content="article" />
|
|
|
|
{%if description %}
|
2025-02-11 21:47:02 +01:00
|
|
|
<meta property="description" content="{{description}}" />
|
2025-02-04 19:38:08 +01:00
|
|
|
<meta property="og:description" content="{{description}}" />
|
|
|
|
{% endif %}
|
|
|
|
<meta property="og:title" content="{{title}}" />
|
|
|
|
<meta property="og:url" content="{{site.url}}{{page.url | url}}" />
|
|
|
|
<meta property="og:sitename" content="{{site.title}}" />
|
|
|
|
<meta property="og:image" content="{{site.url}}/img/RB-w.png" />
|
|
|
|
{%endif%}
|
|
|
|
|
|
|
|
<title>{% if title %}{{title}} | {% endif %}{{site.title}}</title>
|
|
|
|
</head>
|
2025-01-31 02:18:17 +01:00
|
|
|
|
2025-02-04 19:38:08 +01:00
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
<div class="nav">
|
|
|
|
<a class="d-inline-block main-logo" href="/">
|
|
|
|
<img src="/img/RB-w.png" alt="RB logo" eleventy:widths="100" />
|
|
|
|
Rik Berkelder
|
|
|
|
</a>
|
|
|
|
<div class="nav-links">
|
|
|
|
<div class="d-inline-block">
|
|
|
|
{{navItem("Home", "/")}}
|
2025-02-11 21:28:49 +01:00
|
|
|
{{navItem("Blog", "/blog", false)}}
|
2025-02-04 19:38:08 +01:00
|
|
|
</div>
|
|
|
|
<div class="d-inline-block">
|
|
|
|
<span> | </span>
|
|
|
|
{{navItem("Mastodon", "https://dook.business/@RikSolo")}}
|
|
|
|
{{navItem("Instagram", "https://instagram.com/RikBerkelder", false)}}
|
|
|
|
</div>
|
2025-01-28 03:12:25 +01:00
|
|
|
</div>
|
2025-01-27 02:17:27 +01:00
|
|
|
|
|
|
|
</div>
|
2025-02-04 19:38:08 +01:00
|
|
|
{{content | safe}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<script src="//instant.page/5.2.0" type="module"
|
|
|
|
integrity="sha384-jnZyxPjiipYXnSU0ygqeac2q7CVYMbh84q0uHVRRxEtvFPiQYbXWUorga2aqZJ0z"></script>
|
2025-02-11 22:40:31 +01:00
|
|
|
<script data-goatcounter="https://goatcounter.riksolo.com/count" async
|
|
|
|
src="//goatcounter.riksolo.com/count.js"></script>
|
2025-02-04 19:38:08 +01:00
|
|
|
</body>
|
2025-01-27 02:17:27 +01:00
|
|
|
|
|
|
|
</html>
|