Add login/logout routes

This commit is contained in:
Yusur 2022-11-12 11:15:06 +01:00
parent d45d5c4284
commit 00bd1128d1
8 changed files with 107 additions and 12 deletions

View file

@ -8,7 +8,7 @@
{% block content %}
<h1 id="firstHeading">{{ p.title }}</h1>
<div class="preview-subtitle">Backlinks</div>
<div class="preview-subtitle">{{ T('backlinks') }}</div>
{% if backlinks %}
<ul>
@ -19,9 +19,9 @@
{% endfor %}
</ul>
{% else %}
<p class="placeholder">No other pages linking here. Is this page orphan?</p>
<p class="placeholder">{{ T("backlinks-empty") }}</p>
{% endif %}
<p>Back to <a href="{{ p.get_url() }}">{{ p.title }}</a>.</p>
<p>{{ T("back-to") }} <a href="{{ p.get_url() }}">{{ p.title }}</a>.</p>
{% endblock %}