~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
7{% extends "base.html" %}
8{% block extrahead %}
9<link rel="stylesheet" href="{{ 'assets/stylesheets/mkdocs-material-styling.css' | url }}">
10<script src="https://hypothes.is/embed.js" async></script>
11
12<!--<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7086107380680684" crossorigin="anonymous"></script>-->
13{% endblock %}
14<!-- Staging build -->
15{% block announce %}
16For updates follow <strong>@ajhalili2006</strong> on
17<a rel="me" href="https://tilde.zone/@ajhalili2006">
18 <span class="twemoji mastodon">
19 {% include ".icons/fontawesome/brands/mastodon.svg" %}
20 </span>
21<strong>the tildeverse</strong>
22</a>
23and
24<a href="https://substack.com/@ajhalili2006">
25 <span class="twemoji substack">
26 {% include ".icons/simple/substack.svg" %}
27 </span>
28 <strong>Substack</strong>
29</a>
30{% endblock %}
31{% block container %}
32 <div class="md-content" data-md-component="content">
33 <article class="md-content__inner md-typeset">
34 {% block content %}
35 {% include "partials/content.html" %}
36 {% endblock %}
37 </article>
38 </div>
39 {% endblock %}
40