Browse Source

ethics studio subpage added

graphics
Cailean Finn 3 weeks ago
parent
commit
5db0489a42
  1. 6
      app.py
  2. 13
      templates/_ex.html
  3. 11
      templates/grph.html
  4. 8
      templates/list-exhibitions.html

6
app.py

@ -19,6 +19,10 @@ def index():
sup_img = get_support_images() sup_img = get_support_images()
return render_template('index.html', title='', sup_img_list=sup_img) return render_template('index.html', title='', sup_img_list=sup_img)
@app.route('/grph')
def graphics():
return render_template('grph.html')
@app.route('/events') @app.route('/events')
def events(): def events():
events = get_all_content('event') events = get_all_content('event')
@ -34,6 +38,8 @@ def exhibition_type(ex_type):
ex_type = "LAN" ex_type = "LAN"
elif ex_type == "unsettling-the-algorithm": elif ex_type == "unsettling-the-algorithm":
ex_type = "UTA" ex_type = "UTA"
elif ex_type == "ethics-studio":
ex_type = "ES"
exhibitions = get_all_content('exhibition') exhibitions = get_all_content('exhibition')
return render_template('list-exhibitions.html', title="Exhibitions", content=exhibitions, ex_type=ex_type) return render_template('list-exhibitions.html', title="Exhibitions", content=exhibitions, ex_type=ex_type)

13
templates/_ex.html

@ -17,3 +17,16 @@
<p>Location: The Bank, Digital Hub, Thomas St</p> <p>Location: The Bank, Digital Hub, Thomas St</p>
</div> </div>
</div> </div>
<div class="exh-container">
<a href="exhibitions/ethics-studio"><h1>Ethics Studio ↑</h1></a>
<p>The Ethics Studio is an interactive space dedicated to exploring our attitudes, values, ideas and expectations of technologies past, present, and those yet to come.</p>
<p>You are invited to join us in this living research studio to learn, discuss, create and play. In the space, there are multiple interactive research exhibits that come to life with your input. Get involved, explore, experiment and be a part of the discussion.</p>
<p>You may be asked to join a conversation with our researchers or artists, take part in an interview or a number of fun activities. These interactions are completely voluntary and no personal information is sought or required. Please be aware that there will be note-taking, photography, audio and/or video recording taking place – but no identifiable personal data will be captured or shared.</p>
<p>Thank you for joining us and helping to shape the future of research.</p>
<p>The Ethics Studio is designed as a collaboration between Beta Festival and ADAPT SFI Research Centre for AI-Driven Digital Content Technology.</p>
<div class="exh-info">
<p>Date: 1 -> 17 November</p>
<p>Location: The Bank, Digital Hub, Thomas St</p>
</div>
</div>

11
templates/grph.html

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block title %}{% if title %}{{ '| '+ title }}{% endif %}{% endblock %}
{% block content %}
<div id="main-wrapper">
<div id="container-index">
</div>
</div>
<script type="module" src="{{ url_for('static', filename='js/main.js') }}"></script>
{% endblock content %}

8
templates/list-exhibitions.html

@ -17,6 +17,11 @@
Local Artists Network ↑ Local Artists Network ↑
</div> </div>
{% endif %} {% endif %}
{% if ex_type == "ES" %}
<div class="list-header">
Ethics Studio ↑
</div>
{% endif %}
<div id="list-container" class="fadeInUp-animation"> <div id="list-container" class="fadeInUp-animation">
@ -28,6 +33,9 @@
{% if ex_type == "LAN"%} {% if ex_type == "LAN"%}
<a href='/{{ title.lower() }}/local-artists-network/{{event.title}}'> <a href='/{{ title.lower() }}/local-artists-network/{{event.title}}'>
{% endif %} {% endif %}
{% if ex_type == "ES"%}
<a href='/{{ title.lower() }}/ethics-studio/{{event.title}}'>
{% endif %}
<div class="list"> <div class="list">
<div class="list-image"> <div class="list-image">
<img src="{{ event.image }}" alt="{{event.title}}" loading="lazy"> <img src="{{ event.image }}" alt="{{event.title}}" loading="lazy">

Loading…
Cancel
Save