2024-05-08 15:53:17 +02:00
|
|
|
<!doctype html>
|
2024-05-09 00:29:59 +02:00
|
|
|
<html lang="en-US">
|
2024-05-07 11:48:28 +02:00
|
|
|
<head>
|
2024-05-09 00:29:59 +02:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2024-05-09 12:19:35 +02:00
|
|
|
<link rel="icon" type="image/png" href="/~tasiaiso/favicon.png" />
|
|
|
|
<link rel="icon" type="image/x-icon" href="/~tasiaiso/favicon.ico" />
|
2024-05-09 00:29:59 +02:00
|
|
|
|
2024-05-09 12:19:35 +02:00
|
|
|
<link rel="stylesheet" href="/~tasiaiso/gruvbox-dark.css" />
|
|
|
|
<link rel="stylesheet" href="/~tasiaiso/style.css" />
|
2024-05-09 00:29:59 +02:00
|
|
|
|
2024-05-08 15:53:17 +02:00
|
|
|
<title>
|
|
|
|
{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }}
|
|
|
|
</title>
|
2024-05-09 00:29:59 +02:00
|
|
|
|
|
|
|
<!-- <meta name="description" content="Page description"> -->
|
|
|
|
<meta name="keywords" content="programming, technical writing" />
|
|
|
|
<meta name="author" content="Tasia Iso" />
|
|
|
|
<link rel="me" href="https://kitsunes.club/@tasiaiso" />
|
|
|
|
<meta name="ICBM" content="44.6, 4.4" />
|
|
|
|
|
|
|
|
<!-- <meta
|
|
|
|
name="robots"
|
|
|
|
content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large"
|
|
|
|
/> -->
|
2024-05-07 11:48:28 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% if not page.is_homepage %}
|
2024-05-08 15:53:17 +02:00
|
|
|
<a href="/">root</a>
|
|
|
|
<br /><br />
|
2024-05-07 11:48:28 +02:00
|
|
|
{% endif %}
|
2024-05-08 17:06:18 +02:00
|
|
|
<!-- -->
|
2024-05-07 11:48:28 +02:00
|
|
|
|
2024-05-08 17:06:18 +02:00
|
|
|
pages
|
|
|
|
<!-- -->
|
|
|
|
{% if nav|length>1 %}
|
2024-05-08 15:53:17 +02:00
|
|
|
<ul>
|
2024-05-08 17:06:18 +02:00
|
|
|
{% for nav_item in nav %}
|
|
|
|
<!-- -->
|
|
|
|
{% if nav_item.children %}
|
2024-05-08 15:53:17 +02:00
|
|
|
<li>
|
|
|
|
{{ nav_item.title }}
|
2024-05-07 11:48:28 +02:00
|
|
|
<ul>
|
2024-05-08 15:53:17 +02:00
|
|
|
{% for nav_item in nav_item.children %}
|
2024-05-17 08:49:51 +02:00
|
|
|
|
|
|
|
{% if not nav_item.meta.draft %}
|
2024-05-08 15:53:17 +02:00
|
|
|
<li class="{% if nav_item.active %}current{% endif %}">
|
2024-05-09 12:19:35 +02:00
|
|
|
<a href="{{ nav_item.url|url }}"
|
|
|
|
>{{ nav_item.meta.date }} {% if nav_item.meta.date %} - {% endif
|
|
|
|
%} {{ nav_item.title }}</a
|
|
|
|
>
|
2024-05-08 15:53:17 +02:00
|
|
|
</li>
|
2024-05-17 08:49:51 +02:00
|
|
|
|
|
|
|
{% endif %}
|
2024-05-07 11:48:28 +02:00
|
|
|
{% endfor %}
|
2024-05-08 15:53:17 +02:00
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
{% else %}
|
|
|
|
<li class="{% if nav_item.active %}current{% endif %}">
|
|
|
|
<a href="{{ nav_item.url|url }}">{{ nav_item.title }}</a>
|
|
|
|
</li>
|
2024-05-08 17:06:18 +02:00
|
|
|
{% endif %}
|
|
|
|
<!-- -->
|
|
|
|
{% endfor %}
|
2024-05-08 15:53:17 +02:00
|
|
|
</ul>
|
2024-05-08 17:06:18 +02:00
|
|
|
<!-- -->
|
|
|
|
{% endif %}
|
|
|
|
<!-- -->
|
|
|
|
{% if not page.is_homepage %}
|
|
|
|
<!-- -->
|
|
|
|
table of contents
|
2024-05-08 15:53:17 +02:00
|
|
|
<ul>
|
|
|
|
{% for toc_item in page.toc %}
|
|
|
|
<li><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
|
|
|
|
{% for toc_item in toc_item.children %}
|
|
|
|
<li><a href="{{ toc_item.url }}">{{ toc_item.title }}</a></li>
|
2024-05-08 17:06:18 +02:00
|
|
|
{% endfor %}
|
|
|
|
<!-- -->
|
|
|
|
{% endfor %}
|
2024-05-08 15:53:17 +02:00
|
|
|
</ul>
|
2024-05-08 17:06:18 +02:00
|
|
|
{% endif %}
|
2024-05-09 12:19:35 +02:00
|
|
|
|
|
|
|
<hr />
|
2024-05-08 15:53:17 +02:00
|
|
|
|
2024-05-08 17:06:18 +02:00
|
|
|
{{ page.content }}
|
|
|
|
|
|
|
|
<!-- Webrings -->
|
2024-05-08 15:53:17 +02:00
|
|
|
<p>
|
2024-05-09 00:29:59 +02:00
|
|
|
<a
|
|
|
|
href="https://fediring.net/previous?host=tilde.club%2F~tasiaiso"
|
|
|
|
target="_top"
|
|
|
|
>←</a
|
|
|
|
>
|
|
|
|
<a href="https://fediring.net">Fediring</a>
|
|
|
|
<a
|
|
|
|
href="https://fediring.net/next?host=tilde.club%2F~tasiaiso"
|
|
|
|
target="_top"
|
|
|
|
>→</a
|
|
|
|
>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<a href="http://tilde.club/~harper/link.html?action=random" target="_top"
|
2024-05-08 15:53:17 +02:00
|
|
|
>←</a
|
|
|
|
>
|
2024-05-09 00:29:59 +02:00
|
|
|
<a href="https://tilde.club">tilde.club</a>
|
|
|
|
<a href="http://tilde.club/~harper/link.html?action=random" target="_top"
|
|
|
|
>→</a
|
|
|
|
>
|
2024-05-08 15:53:17 +02:00
|
|
|
</p>
|
|
|
|
|
2024-05-08 17:06:18 +02:00
|
|
|
<!-- 88x31 badges -->
|
2024-05-08 15:53:17 +02:00
|
|
|
<a href="https://fediring.net"
|
2024-05-09 12:19:35 +02:00
|
|
|
><img src="/~tasiaiso/images/badges/fediring.png" alt="fediring badge"
|
2024-05-08 15:53:17 +02:00
|
|
|
/></a>
|
2024-05-08 17:06:18 +02:00
|
|
|
<a href="https://kitsu.life"
|
2024-05-09 12:19:35 +02:00
|
|
|
><img src="/~tasiaiso/images/badges/kitsulife.png" alt="kitsulife badge"
|
2024-05-08 17:06:18 +02:00
|
|
|
/></a>
|
|
|
|
<a href="https://nixos.org"
|
2024-05-09 12:19:35 +02:00
|
|
|
><img src="/~tasiaiso/images/badges/nixos.png" alt="nixos badge"
|
|
|
|
/></a>
|
|
|
|
<a href="https://tilde.club"
|
|
|
|
><img src="/~tasiaiso/images/badges/tildeclub.png" alt="tilde.club badge"
|
2024-05-08 17:06:18 +02:00
|
|
|
/></a>
|
|
|
|
|
2024-05-09 12:19:35 +02:00
|
|
|
(<a href="/~tasiaiso/images/badges/credits.txt">credits</a>)
|
2024-05-08 17:06:18 +02:00
|
|
|
|
2024-05-17 08:38:39 +02:00
|
|
|
<br />
|
|
|
|
|
|
|
|
<a href="https://citrons.xyz/a/memetic-apioform-page.html"
|
2024-05-22 13:37:47 +02:00
|
|
|
>memetic apiopage</a
|
|
|
|
>
|
|
|
|
|
|
|
|
please click on this
|
|
|
|
<a href="https://john.citrons.xyz/embed?ref=tilde.club/~tasiaiso/"
|
|
|
|
>johnvertisement</a
|
2024-05-17 08:38:39 +02:00
|
|
|
>
|
|
|
|
|
|
|
|
<br />
|
2024-05-08 17:12:33 +02:00
|
|
|
<hr />
|
2024-05-17 08:38:39 +02:00
|
|
|
|
|
|
|
This webite's source code and built webpages when shared in their entirety
|
|
|
|
are provided under the
|
|
|
|
<a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL-3.0</a> license.
|
|
|
|
All blog posts, articles and Markdown files contained within the
|
|
|
|
<a href="https://gitea.com/tasiaiso/tilde">git repository</a> are shared
|
|
|
|
under the
|
|
|
|
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"
|
|
|
|
>CC BY-NC-SA 4.0</a
|
|
|
|
>
|
|
|
|
license. If you want to use my content for commercial purposes, feel free to
|
|
|
|
contact me.
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<br />
|
|
|
|
|
|
|
|
This is an
|
|
|
|
<a href="https://actualwebsite.org">actual website</a>. This page is cleaner
|
|
|
|
than 0% of all web pages globally according to
|
2024-05-09 00:29:59 +02:00
|
|
|
<a href="https://www.websitecarbon.com/website/tilde-club-tasiaiso"
|
|
|
|
>websitecarbon.com</a
|
2024-05-08 17:12:33 +02:00
|
|
|
>.
|
2024-05-17 08:38:39 +02:00
|
|
|
|
2024-05-08 17:12:33 +02:00
|
|
|
<br />
|
2024-05-17 08:38:39 +02:00
|
|
|
|
2024-05-08 17:12:33 +02:00
|
|
|
Built by <a href="https://www.mkdocs.org">mkdocs</a> and served by
|
|
|
|
<a href="https://tilde.club">tilde.club</a>.
|
2024-05-17 08:38:39 +02:00
|
|
|
|
|
|
|
<br /><br />
|
2024-05-07 11:48:28 +02:00
|
|
|
</body>
|
2024-05-08 15:53:17 +02:00
|
|
|
</html>
|