~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion]
andreijiroh.dev
zensical
mkdocs-material
website
1{#-
2
3SPDX-License-Identifier: MIT
4
5-#}
6{% extends "base.html" %}
7
8{% block site_meta %}
9{{ super() }}
10 <meta name="readthedocs-addons-api-version" content="1" />
11{% endblock %}
12
13{% block extrahead %}
14 <link rel="stylesheet" href="{{ 'assets/stylesheets/theme.css' | url }}">
15 <script src="https://hypothes.is/embed.js" async></script>
16
17<!--<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7086107380680684" crossorigin="anonymous"></script>-->
18{% endblock %}
19
20<!-- Staging build -->
21{% block announce %}
22For updates follow <strong>@ajhalili2006</strong> on
23<a rel="me" href="https://tilde.zone/@ajhalili2006">
24 <span class="twemoji mastodon">
25 {% include ".icons/fontawesome/brands/mastodon.svg" %}
26 </span>
27 <strong>the tildeverse</strong>,
28</a>
29<a rel="me" href="https://bsky.app/profile/andreijiroh.dev">
30 <span class="twemoji bluesky">
31 {% include ".icons/simple/bluesky.svg" %}
32 </span>
33 <strong>Bluesky</strong>,
34</a>
35and
36<a href="https://substack.com/@ajhalili2006">
37 <span class="twemoji substack">
38 {% include ".icons/simple/substack.svg" %}
39 </span>
40 <strong>Substack</strong>.
41</a> (<a href="https://recaptime.dev">Looking for Recap Time Squad?</a>)
42{% endblock %}
43{% block container %}
44<div class="md-content" data-md-component="content">
45 <article class="md-content__inner md-typeset">
46 {% block content %}
47 {% include "partials/content.html" %}
48 {% endblock %}
49 </article>
50</div>
51{% endblock %}
52