2024-02-15 18:24:26 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block announce %}
|
|
|
|
You can also find me at
|
|
|
|
<a href="https://theorangeone.net/">
|
|
|
|
<span class="twemoji globe">
|
|
|
|
{% include ".icons/fontawesome/solid/globe.svg" %}
|
|
|
|
</span>
|
|
|
|
<strong>My website</strong>
|
|
|
|
</a>,
|
|
|
|
or on social media:
|
|
|
|
<a rel="me" href="https://theorangeone.net/@jake">
|
|
|
|
<span class="twemoji globe">
|
|
|
|
{% include ".icons/fontawesome/brands/mastodon.svg" %}
|
|
|
|
</span>
|
|
|
|
<strong>Mastodon</strong>
|
|
|
|
</a>
|
|
|
|
,
|
|
|
|
<a href="https://twitter.com/RealOrangeOne">
|
|
|
|
<span class="twemoji twitter">
|
|
|
|
{% include ".icons/fontawesome/brands/twitter.svg" %}
|
|
|
|
</span>
|
|
|
|
<strong>Twitter</strong>
|
|
|
|
</a>
|
|
|
|
,
|
|
|
|
<a href="https://github.com/RealOrangeOne">
|
|
|
|
<span class="twemoji github">
|
|
|
|
{% include ".icons/fontawesome/brands/github.svg" %}
|
|
|
|
</span>
|
|
|
|
<strong>GitHub</strong>
|
|
|
|
</a>.
|
|
|
|
{% endblock %}
|
2024-02-21 11:40:55 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{ super() }}
|
|
|
|
|
|
|
|
{% if page.meta.sources %}
|
|
|
|
<small>Sources: {% for source in page.meta.sources %}<a href="{{ source }}">{{ source|domain }}</a>{% endfor %}</small>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|