From 4d1368e382648e91aa6d0e5d05ae3292355ed994 Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Sat, 17 Aug 2024 19:34:17 -0400 Subject: bevy_outline_post_process page --- templates/project-page.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'templates/project-page.html') diff --git a/templates/project-page.html b/templates/project-page.html index 3e8e2e4..c024b10 100644 --- a/templates/project-page.html +++ b/templates/project-page.html @@ -4,8 +4,13 @@ <- back to projects

{{ page.title }} + {% if page.extra.wip %} + (wip) + {% endif %}

+{% if page.description %}

{{ page.description }}

+{% endif %} {% if page.taxonomies.categories %}

category: {{ page.taxonomies.categories[0] }}

@@ -39,4 +44,14 @@ {% endif %}
{{ page.content | safe }} +{% set project = get_taxonomy_term(kind="projects", term=page.title, required=false) %} +{% if project and project.page_count > 0 %} +
+

related blog posts:

+ +{% endif %} {% endblock content %} -- cgit v1.2.3