1
0
mirror of https://gitlab.com/free_zed/free_zed.gitlab.io.git synced 2024-06-18 02:22:31 +00:00
free_zed.gitlab.io/theme-uberspot/templates/page.html

24 lines
662 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ page.title|striptags }}{% endblock %}
2020-09-06 21:56:42 +00:00
{% block content %}
<article>
<header>
<h1><a href="/{{ page.url }}" rel="bookmark">{{ page.title|striptags }}</a></h1>
2020-09-06 21:56:42 +00:00
{% if page.translations %}
<p>Traductions:
{% for translation in page.translations %}
<a href="/{{ translation.url }}">[{{ translation.lang }}]</a>
{% if not loop.last %}
&bull;
{% endif %}
{% endfor %}
</p>
{% endif %}
</header>
<div class="body">
{{ page.content }}
</div>
</article>
{% endblock %}