blob: df4076ecd3ec4f49be5745cce4ac6113e065e49b (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block language %}
{% set translations = page.translations %}
{% include "translation-links.html" %}
{% endblock langauge %}
{% block content %}
{% set post = page -%}
<article class="post">
{% include "film/post_header.html" %}
<section class="post-body">
{{ post.content | safe }}
</section>
<footer>
{% include "license.html" %}
</footer>
</article>
{% endblock content %}
|