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/applications.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 theme/bulma/templates/applications.html (limited to 'theme/bulma/templates/applications.html') diff --git a/theme/bulma/templates/applications.html b/theme/bulma/templates/applications.html new file mode 100644 index 0000000..8713d38 --- /dev/null +++ b/theme/bulma/templates/applications.html @@ -0,0 +1,22 @@ +{% extends "page.html" %} + +{% block after_content %} +{% for page in hidden_pages|selectattr("date")|sort(reverse=true,attribute="date") %} +{% for tag in page.tags if "application" == tag.name %} +

{{ page.title }}

+
+ {% if summarise or page.metadata['summary'] or SUMMARY_MAX_LENGTH %} + {% if page.featured_image %} + + {% endif %} + {{ page.summary }} + {% endif %} +
+{% endfor %} + {% if not loop.last %} +
+ {% endif %} +{% endfor %} +{{ super() }} + +{% endblock %} -- cgit v1.2.3