rename .html templates to .jinja2 for more consistency

This commit is contained in:
Yusur 2023-03-16 14:17:50 +01:00
parent 7f050afb8b
commit 2887d94a8c
36 changed files with 34 additions and 33 deletions

13
templates/viewold.jinja2 Normal file
View file

@ -0,0 +1,13 @@
{% extends "view.html" %}
{% block meta %}
<meta name="robots" content="noindex,nofollow" />
{% endblock %}
{% block history_nav %}
<div class="history-nav">
<p>{{ T('old-revision-notice') }}
<time datetime="{{ rev.pub_date.isoformat() }}">{{ rev.pub_date.strftime('%B %-d, %Y at %H:%M:%S') }}</time>
(ID #{{ rev.id }}). <a href="{{ p.get_url() }}">Show latest</a></p>
</div>
{% endblock %}