aboutsummaryrefslogtreecommitdiff
path: root/theme/bulma/templates/applications.html
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2024-06-19 14:44:10 +0200
committerSébastien Dailly <sebastien@dailly.me>2024-06-19 14:44:10 +0200
commite0a989555b6bef9173088da9e0b980338a88ce0c (patch)
tree3e35bc65664e881d62cf14970d482884b80289f7 /theme/bulma/templates/applications.html
parent3b3c4db1bdd29b46a23051fc5427197ce2831764 (diff)
Swiched the theme to bulma-css
Diffstat (limited to 'theme/bulma/templates/applications.html')
-rw-r--r--theme/bulma/templates/applications.html22
1 files changed, 22 insertions, 0 deletions
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 %}
+ <h2><a href="{{ SITEURL }}/{{ page.url }}{% if not DISABLE_URL_HASH %}#{{ page.slug }}{% endif %}">{{ page.title }}</a></h2>
+ <div class="content">
+ {% if summarise or page.metadata['summary'] or SUMMARY_MAX_LENGTH %}
+ {% if page.featured_image %}
+ <img src="{{ page.featured_image }}">
+ {% endif %}
+ {{ page.summary }}
+ {% endif %}
+ </div>
+{% endfor %}
+ {% if not loop.last %}
+ <hr />
+ {% endif %}
+{% endfor %}
+{{ super() }}
+
+{% endblock %}