From 2bded12a13008105b2ac9180f164016b6387139e Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 3 May 2026 02:48:15 +1000 Subject: [PATCH 1/4] Fix location overlap on index page user locations --- src/index.njk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/index.njk b/src/index.njk index f5af219..5c16adc 100644 --- a/src/index.njk +++ b/src/index.njk @@ -32,7 +32,9 @@ layout: false {% set location = person.data.location %} {% if location or country %} - {{ location }}{% if location and country %}, {% endif %}{{ country }} + {{ location }} + {% if location and country %}
{% endif %} + {{ country }}
{% endif %} From 80bdf0f8d53aa99c4cfce815a091b60ced0d060b Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 3 May 2026 02:58:19 +1000 Subject: [PATCH 2/4] Fixups --- src/index.njk | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/index.njk b/src/index.njk index 5c16adc..1119d25 100644 --- a/src/index.njk +++ b/src/index.njk @@ -31,10 +31,9 @@ layout: false {% set country = person.data.country %} {% set location = person.data.location %} {% if location or country %} - - {{ location }} - {% if location and country %}
{% endif %} - {{ country }} + + {% if location %}{{ location }}{% endif %} + {% if country %}{{ country }}{% endif %} {% endif %} From ecbbe92b96f04116a20cc9a37429ad7bd2f2ad9c Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 3 May 2026 03:02:32 +1000 Subject: [PATCH 3/4] Fixups --- src/index.njk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.njk b/src/index.njk index 1119d25..25d2e8e 100644 --- a/src/index.njk +++ b/src/index.njk @@ -31,10 +31,10 @@ layout: false {% set country = person.data.country %} {% set location = person.data.location %} {% if location or country %} - +
{% if location %}{{ location }}{% endif %} {% if country %}{{ country }}{% endif %} - +
{% endif %} From befa61dd898f36ac9cb5f5200a09f29aceebdc84 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Sun, 3 May 2026 03:12:32 +1000 Subject: [PATCH 4/4] Fixups --- src/index.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.njk b/src/index.njk index 25d2e8e..85f5b74 100644 --- a/src/index.njk +++ b/src/index.njk @@ -31,7 +31,7 @@ layout: false {% set country = person.data.country %} {% set location = person.data.location %} {% if location or country %} -
+
{% if location %}{{ location }}{% endif %} {% if country %}{{ country }}{% endif %}