This commit is contained in:
randogoth 2023-05-16 23:34:27 +03:00
commit 78c3dc9737
36 changed files with 1126 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{% 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 %}