From e0a989555b6bef9173088da9e0b980338a88ce0c Mon Sep 17 00:00:00 2001 From: Sébastien Dailly Date: Wed, 19 Jun 2024 14:44:10 +0200 Subject: Swiched the theme to bulma-css --- theme/bulma/templates/page.html | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 theme/bulma/templates/page.html (limited to 'theme/bulma/templates/page.html') diff --git a/theme/bulma/templates/page.html b/theme/bulma/templates/page.html new file mode 100644 index 0000000..a4eacf8 --- /dev/null +++ b/theme/bulma/templates/page.html @@ -0,0 +1,29 @@ +{% extends "base.html" %} + +{% block meta %} +{{ super() }} + +{% if page.translations -%} + +{% for p in page.translations %} + +{% endfor %} +{% endif %} +{% endblock %} + +{% block title %} – {{ page.title|striptags|escape }}{% endblock %} + +{% block content %} +
+
+ {% import 'partial/translations.html' as translations with context %} + {{ translations.translations_for(page) }} +

{{ page.title }}

+
+
+ {% block before_content %}{% endblock %} + {% block page_content %}{{ page.content }}{% endblock %} + {% block after_content %}{% endblock %} +
+
+{% endblock %} -- cgit v1.2.3