Browse Source

small change s+ dwelling

master
Cailean Finn 3 months ago
parent
commit
4f92c40d78
  1. 3
      build.py
  2. 3
      content/posts/dwelling.md
  3. 8
      public/articles/(o)machine.html
  4. 6
      public/articles/beauty-and-the-beep.html
  5. 14
      public/articles/dwelling.html
  6. 6
      public/articles/electronic-image.html
  7. 6
      public/articles/latent-mirror.html
  8. 6
      public/articles/moloch.html
  9. 6
      public/articles/undefined.html
  10. 4
      public/css/styles.css
  11. 6
      templates/article.html

3
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']

3
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

8
public/articles/(o)machine.html

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

6
public/articles/beauty-and-the-beep.html

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

14
public/articles/dwelling.html

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

6
public/articles/electronic-image.html

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

6
public/articles/latent-mirror.html

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

6
public/articles/moloch.html

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

6
public/articles/undefined.html

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

4
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 {

6
templates/article.html

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

Loading…
Cancel
Save