17 lines
345 B
Text
17 lines
345 B
Text
{% extends "base.mu" %}
|
|
{% block content %}
|
|
|
|
>{{ article.title }}
|
|
|
|
{% import 'translations.mu' as translations with context %}
|
|
{{ translations.translations_for(article) }}
|
|
{{ article.locale_date }}
|
|
{% if article.authors %}
|
|
|
|
by {% for author in article.authors %}{{ author }}{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{{ article.content }}
|
|
|
|
{% endblock %}
|