46 lines
1.6 KiB
HTML
46 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{page.title}} – {{ config.extra.sitename|safe }}{% endblock title %}
|
|
|
|
{% block head %}
|
|
{% if page.extra.katex %}{{macros::katex()}}{% endif %}
|
|
{% endblock head %}
|
|
|
|
{% block body %}
|
|
<span id="breadcrumb">
|
|
{% for a in page.ancestors %}
|
|
{% set s = get_section(path=a) %}
|
|
<a href="{{s.permalink|safe}}">{{s.title}}</a>
|
|
{% if not loop.last %}>{% endif %}
|
|
{% endfor %}
|
|
</span>
|
|
<br/>
|
|
<span id="langs">
|
|
{{lang}} –
|
|
|
|
{% for t in page.translations %}
|
|
{% if t.lang|default(value=config.default_language) != lang %}
|
|
<a href="{{t.permalink|safe}}">{{t.lang|default(value=config.default_language)}}</a>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</span>
|
|
|
|
<h1>{{page.title | safe}}</h1>
|
|
<small>{{page.date}}</small><br/>
|
|
<small>{% for tag in page.taxonomies.tags %}<a href="/{{macros::langurl()}}tags/{{tag}}">{{tag}}</a>{% if not loop.last %}, {% endif %}{% endfor %}</small>
|
|
|
|
<main>
|
|
{{page.content | safe}}
|
|
</main>
|
|
|
|
<footer>
|
|
<hr/>
|
|
<div class="footer-icons">
|
|
<a rel="author" href="https://toot.aquilenet.fr/@tuxmain" title="Mastodon" target="_blank"><img alt="Mastodon" src="/img/mastodon-purple.svg" style="width:48px"/></a>
|
|
<a href="/{{macros::langurl()}}atom.xml" title="RSS/Atom"><img alt="RSS/Atom" src="/img/rss-gradient.svg" style="width:48px"/></a>
|
|
<a href="https://liberapay.com/tuxmain/donate" title="Liberapay"><img alt="Liberapay" src="/img/liberapay-donate.svg"/></a>
|
|
</div>
|
|
<br/>
|
|
<a href="https://git.txmn.tk/tuxmain/website">Git</a> | <a rel="license" href="//creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>
|
|
</footer>
|
|
{% endblock body %}
|