micron-blog/theme/templates/article.mu

12 lines
336 B
Text
Raw Permalink Normal View History

2023-05-16 23:34:27 +03:00
{% extends "base.mu" %}
{% block content %}
>{{ article.title }}
2023-05-17 12:29:44 +03:00
{% 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 %}
2023-05-16 23:34:27 +03:00
{{ article.content }}
{% endblock %}