148 lines
4.2 KiB
HTML
148 lines
4.2 KiB
HTML
<!doctype html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="icon" type="image/png" href="/~tasiaiso/favicon.png" />
|
|
<link rel="icon" type="image/x-icon" href="/~tasiaiso/favicon.ico" />
|
|
|
|
<link rel="stylesheet" href="/~tasiaiso/gruvbox-dark.css" />
|
|
<link rel="stylesheet" href="/~tasiaiso/style.css" />
|
|
|
|
<title>
|
|
{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }}
|
|
</title>
|
|
|
|
<!-- <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"
|
|
/> -->
|
|
|
|
<!-- <meta
|
|
property="og:image"
|
|
content="https://developer.mozilla.org/mdn-social-share.png"
|
|
/>
|
|
<meta
|
|
property="og:description"
|
|
content="The Mozilla Developer Network (MDN) provides
|
|
information about Open Web technologies including HTML, CSS, and APIs for both websites
|
|
and HTML Apps."
|
|
/>
|
|
<meta property="og:title" content="Mozilla Developer Network" /> -->
|
|
</head>
|
|
<body>
|
|
{% if not page.is_homepage %}
|
|
<a href="/">root</a>
|
|
<br /><br />
|
|
{% endif %}
|
|
<!-- -->
|
|
|
|
pages
|
|
<!-- -->
|
|
{% if nav|length>1 %}
|
|
<ul>
|
|
{% for nav_item in nav %}
|
|
<!-- -->
|
|
{% if nav_item.children %}
|
|
<li>
|
|
{{ nav_item.title }}
|
|
<ul>
|
|
{% for nav_item in nav_item.children %}
|
|
<li class="{% if nav_item.active %}current{% endif %}">
|
|
<a href="{{ nav_item.url|url }}"
|
|
>{{ nav_item.meta.date }} {% if nav_item.meta.date %} - {% endif
|
|
%} {{ nav_item.title }}</a
|
|
>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% else %}
|
|
<li class="{% if nav_item.active %}current{% endif %}">
|
|
<a href="{{ nav_item.url|url }}">{{ nav_item.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
<!-- -->
|
|
{% endfor %}
|
|
</ul>
|
|
<!-- -->
|
|
{% endif %}
|
|
<!-- -->
|
|
{% if not page.is_homepage %}
|
|
<!-- -->
|
|
table of contents
|
|
<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>
|
|
{% endfor %}
|
|
<!-- -->
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
|
|
<hr />
|
|
|
|
{{ page.content }}
|
|
|
|
<!-- Webrings -->
|
|
<p>
|
|
<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"
|
|
>←</a
|
|
>
|
|
<a href="https://tilde.club">tilde.club</a>
|
|
<a href="http://tilde.club/~harper/link.html?action=random" target="_top"
|
|
>→</a
|
|
>
|
|
</p>
|
|
|
|
<!-- 88x31 badges -->
|
|
<a href="https://fediring.net"
|
|
><img src="/~tasiaiso/images/badges/fediring.png" alt="fediring badge"
|
|
/></a>
|
|
<a href="https://kitsu.life"
|
|
><img src="/~tasiaiso/images/badges/kitsulife.png" alt="kitsulife badge"
|
|
/></a>
|
|
<a href="https://nixos.org"
|
|
><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"
|
|
/></a>
|
|
|
|
(<a href="/~tasiaiso/images/badges/credits.txt">credits</a>)
|
|
|
|
<hr />
|
|
This is a
|
|
<a href="https://motherfuckingwebsite.com">motherfucking website</a
|
|
>. This page is cleaner than 0% of all web pages globally according to
|
|
<a href="https://www.websitecarbon.com/website/tilde-club-tasiaiso"
|
|
>websitecarbon.com</a
|
|
>.
|
|
<br />
|
|
Built by <a href="https://www.mkdocs.org">mkdocs</a> and served by
|
|
<a href="https://tilde.club">tilde.club</a>.
|
|
</body>
|
|
</html>
|