micron-blog/theme/templates/base.mu

13 lines
386 B
Text
Raw Normal View History

2023-05-17 12:29:44 +03:00
# lang: {{ DEFAULT_LANG }}
2023-05-16 23:34:27 +03:00
{% block head %}
2023-05-17 12:29:44 +03:00
> {% block title %}{{ SITENAME }}{% endblock title %}
2023-05-16 23:34:27 +03:00
{% endblock head %}
2023-05-24 00:04:11 +03:00
{% for title, link in MENUITEMS %}`[{{ title }}`{{ link }}]{% endfor %}{% if DISPLAY_PAGES_ON_MENU %}{% for p in PAGES %}`[{{ p.title }}`:/page/{{ p.url }}]{% endfor %}{% endif %}
2023-05-16 23:34:27 +03:00
{% block content %}
{% endblock %}
{% if DESCRIPTION %}
{{ DESCRIPTION }}
{% endif %}