From b190f0b66114899440c484c3a080b1146f66a386 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Sun, 2 Aug 2026 09:07:32 -0500 Subject: update apps and add privacy policies --- templates/base.html | 2 +- templates/page.html | 10 ++++++++-- templates/section.html | 4 +++- 3 files changed, 12 insertions(+), 4 deletions(-) (limited to 'templates') diff --git a/templates/base.html b/templates/base.html index 09c565d..5a2fda6 100644 --- a/templates/base.html +++ b/templates/base.html @@ -24,7 +24,7 @@ diff --git a/templates/page.html b/templates/page.html index 32b1607..0682a66 100644 --- a/templates/page.html +++ b/templates/page.html @@ -9,8 +9,14 @@

{{ page.title }}

{% if page.description %}

{{ page.description }}

{% endif %} {{ page.content | safe }} - {% if page.extra.link %} -

{{ page.extra.link_label | default(value="source") | lower }} →

+ {% if page.extra.appstore or page.extra.link %} +

+ {% if page.extra.appstore %}app store →{% endif %} + {% if page.extra.link %}{{ page.extra.link_label | default(value="source") | lower }} →{% endif %} +

+ {% endif %} + {% if page.extra.privacy %} + {% endif %} {% endblock content %} diff --git a/templates/section.html b/templates/section.html index c3a9489..091d7de 100644 --- a/templates/section.html +++ b/templates/section.html @@ -14,14 +14,16 @@ {% for page in section.pages %}
  • - {{ page.title }} + {{ page.title }} {% if page.description %}— {{ page.description }}{% endif %} + {% if not section.extra.plain %} {% if page.extra.appstore %}app store → {% else %}app store — soon{% endif %} {% if page.extra.link %}{{ page.extra.link_label | default(value="source") | lower }} →{% endif %} + {% endif %}
  • {% endfor %} -- cgit v1.2.3