From 4f92c40d78d1369e80fa4b536f6c92446b4804f8 Mon Sep 17 00:00:00 2001 From: Cailean Finn Date: Mon, 15 Jul 2024 12:50:57 +0100 Subject: [PATCH] small change s+ dwelling --- build.py | 3 ++- content/posts/dwelling.md | 3 +++ public/articles/(o)machine.html | 8 ++++---- public/articles/beauty-and-the-beep.html | 6 +++--- public/articles/dwelling.html | 14 ++++++++++---- public/articles/electronic-image.html | 6 +++--- public/articles/latent-mirror.html | 6 +++--- public/articles/moloch.html | 6 +++--- public/articles/undefined.html | 6 +++--- public/css/styles.css | 4 ++-- templates/article.html | 6 +++--- 11 files changed, 39 insertions(+), 29 deletions(-) diff --git a/build.py b/build.py index 15ef0e0..ff3c260 100644 --- a/build.py +++ b/build.py @@ -147,6 +147,7 @@ class Website: class Page: def __init__(self, metadata, md_content, filename, last_updated): + self.metadata = metadata self.content = md_content self.filename = filename @@ -157,7 +158,7 @@ class Page: self.image_src = self.metadata['image'] self.tags = self.metadata['tags'] self.date = self.metadata['date'] - self.showcase = self.metadata.get('showcase', []) + self.showcase = self.metadata.get('showcase', {}) self.credits = self.metadata.get('credits', {}) self.references = self.metadata.get('references', []) self.isDraft = self.metadata['draft'] diff --git a/content/posts/dwelling.md b/content/posts/dwelling.md index 85d1a1f..1451606 100644 --- a/content/posts/dwelling.md +++ b/content/posts/dwelling.md @@ -10,6 +10,9 @@ showcase: - name: Beta Festival, Project Arts Center year: 2023 location: Dublin + - name: 36th Galway Film Fleadh, Irish Talent, Animated Shorts + year: 2024 + location: Galway credits: Peter Power & Leon Butler: Directors Robyn Byrne: Choreographer diff --git a/public/articles/(o)machine.html b/public/articles/(o)machine.html index 1308944..6ceaa44 100644 --- a/public/articles/(o)machine.html +++ b/public/articles/(o)machine.html @@ -58,9 +58,9 @@
-

(2022)

-

Speak It Now Eat It, Revision Performing Arts Festival,

-

Belfast

+

(2022) + Speak It Now Eat It, Revision Performing Arts Festival, + Belfast

@@ -87,7 +87,7 @@

Last Modified:

-

Fri Jun 21 10:54:06 2024

+

Mon Jul 15 12:39:18 2024

diff --git a/public/articles/beauty-and-the-beep.html b/public/articles/beauty-and-the-beep.html index b2e8bdb..653ec2c 100644 --- a/public/articles/beauty-and-the-beep.html +++ b/public/articles/beauty-and-the-beep.html @@ -79,9 +79,9 @@
-

(2024)

-

Exposed Torino Foto Festival,

-

Turin

+

(2024) + Exposed Torino Foto Festival, + Turin

diff --git a/public/articles/dwelling.html b/public/articles/dwelling.html index f15e1ce..a854f18 100644 --- a/public/articles/dwelling.html +++ b/public/articles/dwelling.html @@ -64,9 +64,15 @@
-

(2023)

-

Beta Festival, Project Arts Center,

-

Dublin

+

(2023) + Beta Festival, Project Arts Center, + Dublin

+
+ +
+

(2024) + 36th Galway Film Fleadh, Irish Talent, Animated Shorts, + Galway

@@ -177,7 +183,7 @@

Last Modified:

-

Thu Jul 4 15:30:54 2024

+

Mon Jul 15 12:41:55 2024

diff --git a/public/articles/electronic-image.html b/public/articles/electronic-image.html index 4879ee4..48e94b4 100644 --- a/public/articles/electronic-image.html +++ b/public/articles/electronic-image.html @@ -72,9 +72,9 @@
-

(2022)

-

The Limerick Show, Ormston House,

-

Limerick

+

(2022) + The Limerick Show, Ormston House, + Limerick

diff --git a/public/articles/latent-mirror.html b/public/articles/latent-mirror.html index e20f8d8..74988df 100644 --- a/public/articles/latent-mirror.html +++ b/public/articles/latent-mirror.html @@ -62,9 +62,9 @@
-

(2022)

-

Sound & Portraits, Imagine Arts Fesitval, WGOA,

-

Wateford

+

(2022) + Sound & Portraits, Imagine Arts Fesitval, WGOA, + Wateford

diff --git a/public/articles/moloch.html b/public/articles/moloch.html index 8a89103..a234e72 100644 --- a/public/articles/moloch.html +++ b/public/articles/moloch.html @@ -64,9 +64,9 @@
-

(2024)

-

The OBJECT Itself, Sample-Studios & UCC Digital Art in Ireland Symposium, Lord Mayor's Pavillion,

-

Cork

+

(2024) + The OBJECT Itself, Sample-Studios & UCC Digital Art in Ireland Symposium, Lord Mayor's Pavillion, + Cork

diff --git a/public/articles/undefined.html b/public/articles/undefined.html index 9df45d3..b0a2de4 100644 --- a/public/articles/undefined.html +++ b/public/articles/undefined.html @@ -60,9 +60,9 @@
-

(2022)

-

Exceptional Times, Uncertain Moves, Seo-Seoul Museum of Art,

-

Seoul

+

(2022) + Exceptional Times, Uncertain Moves, Seo-Seoul Museum of Art, + Seoul

diff --git a/public/css/styles.css b/public/css/styles.css index ff124f5..27d8355 100644 --- a/public/css/styles.css +++ b/public/css/styles.css @@ -596,7 +596,7 @@ body { width: 90%; line-height: 20px; font-size: 15px; - gap: 10px; + gap: 20px; } #project-header { @@ -616,7 +616,7 @@ body { #pr-header { font-size: 20px; - margin-bottom: 25px; + margin-bottom: 15px; } #pr-list a { diff --git a/templates/article.html b/templates/article.html index 6401a81..8f82595 100644 --- a/templates/article.html +++ b/templates/article.html @@ -22,9 +22,9 @@
{% for show in showcase %}
-

({{ show['year'] }})

-

{{ show['name'] }},

-

{{ show['location'] }}

+

({{ show['year'] }}) + {{ show['name'] }}, + {{ show['location'] }}

{% endfor %}