66 lines
1.7 KiB
Plaintext
66 lines
1.7 KiB
Plaintext
---js
|
|
{
|
|
nav: [
|
|
{title: "Mastodon", url: "https://dook.business/@RikSolo"},
|
|
{title: "Instagram", url: "https://instagram.com/rikberkelder"}
|
|
]
|
|
}
|
|
---
|
|
|
|
{% macro navItem(title, url, hyphen, target='_self') %}
|
|
<span>
|
|
<a href="{{url}}" target="{{target}}">{{title}}</a>
|
|
{% if hyphen %} - {% endif %}
|
|
</span>
|
|
{% endmacro %}
|
|
|
|
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<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="stylesheet" href="https://cdn.jsdelivr.net/npm/firacode@6.2.0/distr/fira_code.css">
|
|
|
|
<title>{% if title %}{{title}} | {% endif %}Rik Berkelder</title>
|
|
|
|
<style>
|
|
/* Specify in CSS */
|
|
body {
|
|
font-family: 'Fira Code', monospace;
|
|
}
|
|
|
|
@supports (font-variation-settings: normal) {
|
|
body {
|
|
font-family: 'Fira Code VF', monospace;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
{% for ni in collections.page %}
|
|
{{navItem(ni.data.title, ni.data.permalink, not loop.last )}}
|
|
{% endfor %}
|
|
<span> | </span>
|
|
{% for ni in nav %}
|
|
{{navItem(ni.title, ni.url, not loop.last , '_blank')}}
|
|
{% endfor %}
|
|
<span> | </span>
|
|
{{navItem("RBLicht", "https://rblicht.nl", true, '_blank')}}
|
|
{{navItem("RBSolutions", "https://rbsolutions.cc", false, '_blank')}}
|
|
|
|
</div>
|
|
{{content | safe}}
|
|
|
|
<script src="//instant.page/5.2.0" type="module"
|
|
integrity="sha384-jnZyxPjiipYXnSU0ygqeac2q7CVYMbh84q0uHVRRxEtvFPiQYbXWUorga2aqZJ0z"></script>
|
|
</body>
|
|
|
|
</html> |