free_zed.gitlab.io/theme-uberspot/templates/page.html

24 lines
665 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends "base.html" %}
{% block title %}{{ page.title|striptags }}{% endblock %}
{% block content %}
<article>
<header>
<h1><a href="/{{ page.url }}" rel="bookmark">{{ page.title|striptags }}</a></h1>
{% 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 %}