small change s+ dwelling

This commit is contained in:
2024-07-15 12:50:57 +01:00
parent 67891735bb
commit 4f92c40d78
11 changed files with 39 additions and 29 deletions

View File

@@ -147,6 +147,7 @@ class Website:
class Page: class Page:
def __init__(self, metadata, md_content, filename, last_updated): def __init__(self, metadata, md_content, filename, last_updated):
self.metadata = metadata self.metadata = metadata
self.content = md_content self.content = md_content
self.filename = filename self.filename = filename
@@ -157,7 +158,7 @@ class Page:
self.image_src = self.metadata['image'] self.image_src = self.metadata['image']
self.tags = self.metadata['tags'] self.tags = self.metadata['tags']
self.date = self.metadata['date'] self.date = self.metadata['date']
self.showcase = self.metadata.get('showcase', []) self.showcase = self.metadata.get('showcase', {})
self.credits = self.metadata.get('credits', {}) self.credits = self.metadata.get('credits', {})
self.references = self.metadata.get('references', []) self.references = self.metadata.get('references', [])
self.isDraft = self.metadata['draft'] self.isDraft = self.metadata['draft']

View File

@@ -10,6 +10,9 @@ showcase:
- name: Beta Festival, Project Arts Center - name: Beta Festival, Project Arts Center
year: 2023 year: 2023
location: Dublin location: Dublin
- name: 36th Galway Film Fleadh, Irish Talent, Animated Shorts
year: 2024
location: Galway
credits: credits:
Peter Power & Leon Butler: Directors Peter Power & Leon Butler: Directors
Robyn Byrne: Choreographer Robyn Byrne: Choreographer

View File

@@ -58,9 +58,9 @@
<div id="showcase-cont"> <div id="showcase-cont">
<div class="showcase"> <div class="showcase">
<p>(2022)</p> <p>(2022)
<p>Speak It Now Eat It, Revision Performing Arts Festival,</p> Speak It Now Eat It, Revision Performing Arts Festival,
<p>Belfast</p> Belfast</p>
</div> </div>
</div> </div>
@@ -87,7 +87,7 @@
<div id="modified-time"> <div id="modified-time">
<h4>Last Modified: </h4> <h4>Last Modified: </h4>
<p> Fri Jun 21 10:54:06 2024</p> <p> Mon Jul 15 12:39:18 2024</p>
</div> </div>
</div> </div>

View File

@@ -79,9 +79,9 @@
<div id="showcase-cont"> <div id="showcase-cont">
<div class="showcase"> <div class="showcase">
<p>(2024)</p> <p>(2024)
<p>Exposed Torino Foto Festival,</p> Exposed Torino Foto Festival,
<p>Turin</p> Turin</p>
</div> </div>
</div> </div>

View File

@@ -64,9 +64,15 @@
<div id="showcase-cont"> <div id="showcase-cont">
<div class="showcase"> <div class="showcase">
<p>(2023)</p> <p>(2023)
<p>Beta Festival, Project Arts Center,</p> Beta Festival, Project Arts Center,
<p>Dublin</p> Dublin</p>
</div>
<div class="showcase">
<p>(2024)
36th Galway Film Fleadh, Irish Talent, Animated Shorts,
Galway</p>
</div> </div>
</div> </div>
@@ -177,7 +183,7 @@
<div id="modified-time"> <div id="modified-time">
<h4>Last Modified: </h4> <h4>Last Modified: </h4>
<p> Thu Jul 4 15:30:54 2024</p> <p> Mon Jul 15 12:41:55 2024</p>
</div> </div>
</div> </div>

View File

@@ -72,9 +72,9 @@
<div id="showcase-cont"> <div id="showcase-cont">
<div class="showcase"> <div class="showcase">
<p>(2022)</p> <p>(2022)
<p>The Limerick Show, Ormston House,</p> The Limerick Show, Ormston House,
<p>Limerick</p> Limerick</p>
</div> </div>
</div> </div>

View File

@@ -62,9 +62,9 @@
<div id="showcase-cont"> <div id="showcase-cont">
<div class="showcase"> <div class="showcase">
<p>(2022)</p> <p>(2022)
<p>Sound & Portraits, Imagine Arts Fesitval, WGOA,</p> Sound & Portraits, Imagine Arts Fesitval, WGOA,
<p>Wateford</p> Wateford</p>
</div> </div>
</div> </div>

View File

@@ -64,9 +64,9 @@
<div id="showcase-cont"> <div id="showcase-cont">
<div class="showcase"> <div class="showcase">
<p>(2024)</p> <p>(2024)
<p>The OBJECT Itself, Sample-Studios & UCC Digital Art in Ireland Symposium, Lord Mayor's Pavillion,</p> The OBJECT Itself, Sample-Studios & UCC Digital Art in Ireland Symposium, Lord Mayor's Pavillion,
<p>Cork</p> Cork</p>
</div> </div>
</div> </div>

View File

@@ -60,9 +60,9 @@
<div id="showcase-cont"> <div id="showcase-cont">
<div class="showcase"> <div class="showcase">
<p>(2022)</p> <p>(2022)
<p>Exceptional Times, Uncertain Moves, Seo-Seoul Museum of Art,</p> Exceptional Times, Uncertain Moves, Seo-Seoul Museum of Art,
<p>Seoul</p> Seoul</p>
</div> </div>
</div> </div>

View File

@@ -596,7 +596,7 @@ body {
width: 90%; width: 90%;
line-height: 20px; line-height: 20px;
font-size: 15px; font-size: 15px;
gap: 10px; gap: 20px;
} }
#project-header { #project-header {
@@ -616,7 +616,7 @@ body {
#pr-header { #pr-header {
font-size: 20px; font-size: 20px;
margin-bottom: 25px; margin-bottom: 15px;
} }
#pr-list a { #pr-list a {

View File

@@ -22,9 +22,9 @@
<div id="showcase-cont"> <div id="showcase-cont">
{% for show in showcase %} {% for show in showcase %}
<div class="showcase"> <div class="showcase">
<p>({{ show['year'] }})</p> <p>({{ show['year'] }})
<p>{{ show['name'] }},</p> {{ show['name'] }},
<p>{{ show['location'] }}</p> {{ show['location'] }}</p>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>