2023-09-25 15:49:09 +00:00
|
|
|
{#-
|
|
|
|
|
|
|
|
SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
-#}
|
|
|
|
|
2023-09-24 16:12:35 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block extrahead %}
|
|
|
|
<link rel="stylesheet" href="{{ 'assets/stylesheets/mkdocs-material-styling.css' | url }}">
|
|
|
|
{% endblock %}
|
|
|
|
<!-- Staging build -->
|
|
|
|
{% block announce %}
|
2023-09-29 17:43:21 +00:00
|
|
|
For updates follow <strong>@ajhalili2006</strong> on
|
|
|
|
<a rel="me" href="https://tilde.zone/@ajhalili2006">
|
|
|
|
<span class="twemoji mastodon">
|
|
|
|
{% include ".icons/fontawesome/brands/mastodon.svg" %}
|
|
|
|
</span>
|
|
|
|
<strong>the tildeverse</strong>
|
|
|
|
</a>
|
|
|
|
and
|
|
|
|
<a href="https://substack.com/@ajhalili2006">
|
|
|
|
<span class="twemoji substack">
|
|
|
|
{% include ".icons/simple/substack.svg" %}
|
|
|
|
</span>
|
|
|
|
<strong>Substack</strong>
|
|
|
|
</a>
|
2023-09-24 16:12:35 +00:00
|
|
|
{% endblock %}
|
2023-09-29 17:43:21 +00:00
|
|
|
{% block container %}
|
|
|
|
<div class="md-content" data-md-component="content">
|
|
|
|
<article class="md-content__inner md-typeset">
|
|
|
|
{% block content %}
|
|
|
|
{% include "partials/content.html" %}
|
|
|
|
{% endblock %}
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2023-09-24 16:12:35 +00:00
|
|
|
|