1
Fork 0
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-10-18 13:16:35 +01:00
notes/theme/main.html

50 lines
1.2 KiB
HTML
Raw Normal View History

2024-02-15 18:24:26 +00:00
{% extends "base.html" %}
{% block announce %}
2024-03-11 16:14:54 +00:00
You can also find me on
2024-02-15 18:24:26 +00:00
<a href="https://theorangeone.net/">
<span class="twemoji globe">
{% include ".icons/fontawesome/solid/globe.svg" %}
</span>
<strong>My website</strong>
2024-03-11 16:14:54 +00:00
</a>
,
2024-02-15 18:24:26 +00:00
<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>
2024-03-11 16:14:54 +00:00
</a>
and
<a href="https://theorangeone.net/contact/">
more
2024-02-15 18:24:26 +00:00
</a>.
{% endblock %}
{% block content %}
{{ super() }}
{% if page.meta.sources %}
2024-03-12 16:12:14 +00:00
<small>
Sources:
{% for source in page.meta.sources %}
<a href="{{ source }}">{{ source|domain }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</small>
{% endif %}
{% endblock %}