From f2fe987522e6d7bba69921798e50889db889769a Mon Sep 17 00:00:00 2001 From: Cailean Finn Date: Mon, 14 Oct 2024 20:25:29 +0100 Subject: [PATCH] update eye --- templates/article.html | 4 ++++ templates/list-exhibitions.html | 6 +++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/templates/article.html b/templates/article.html index 502c229..baa27e3 100644 --- a/templates/article.html +++ b/templates/article.html @@ -10,7 +10,11 @@
+ {% if article.title == 'This Is How I Roll' %} +
This Is How 👁️ Roll
+ {% else %}
{{ article.title }}
+ {% endif %}
{{ article.artists | join(', ') }}
{% if article.bookUrl %} diff --git a/templates/list-exhibitions.html b/templates/list-exhibitions.html index 097f4d3..3261a4f 100644 --- a/templates/list-exhibitions.html +++ b/templates/list-exhibitions.html @@ -41,7 +41,11 @@ {{event.title}}
-
{{event.title}}
+ {% if event.title == 'This Is How I Roll' %} +
This Is How 👁️ Roll
+ {% else %} +
{{ event.title }}
+ {% endif %}

{{ event.artists | join(', ') }}