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

8
theme/templates/page.mu Normal file
View file

@ -0,0 +1,8 @@
{% extends "base.mu" %}
{% block title %}{{ page.title }}{%endblock%}
{% block content %}
>{{ page.title }}
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
{% endblock %}