diff --git a/app.py b/app.py index 37be01b..73776e9 100644 --- a/app.py +++ b/app.py @@ -19,6 +19,10 @@ def index(): sup_img = get_support_images() return render_template('index.html', title='', sup_img_list=sup_img) +@app.route('/grph') +def graphics(): + return render_template('grph.html') + @app.route('/events') def events(): events = get_all_content('event') @@ -34,6 +38,8 @@ def exhibition_type(ex_type): ex_type = "LAN" elif ex_type == "unsettling-the-algorithm": ex_type = "UTA" + elif ex_type == "ethics-studio": + ex_type = "ES" exhibitions = get_all_content('exhibition') return render_template('list-exhibitions.html', title="Exhibitions", content=exhibitions, ex_type=ex_type) diff --git a/templates/_ex.html b/templates/_ex.html index f1f95ad..f7a9ec6 100644 --- a/templates/_ex.html +++ b/templates/_ex.html @@ -16,4 +16,17 @@

Date: 1 -> 17 November

Location: The Bank, Digital Hub, Thomas St

+ + +
+

Ethics Studio ↑

+

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.

+

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.

+

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.

+

Thank you for joining us and helping to shape the future of research.

+

The Ethics Studio is designed as a collaboration between Beta Festival and ADAPT SFI Research Centre for AI-Driven Digital Content Technology.

+
+

Date: 1 -> 17 November

+

Location: The Bank, Digital Hub, Thomas St

+
\ No newline at end of file diff --git a/templates/grph.html b/templates/grph.html new file mode 100644 index 0000000..415fe4f --- /dev/null +++ b/templates/grph.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + +{% block title %}{% if title %}{{ '| '+ title }}{% endif %}{% endblock %} + +{% block content %} +
+
+
+
+ +{% endblock content %} \ No newline at end of file diff --git a/templates/list-exhibitions.html b/templates/list-exhibitions.html index 4e71a7b..097f4d3 100644 --- a/templates/list-exhibitions.html +++ b/templates/list-exhibitions.html @@ -17,6 +17,11 @@ Local Artists Network ↑ {% endif %} + {% if ex_type == "ES" %} +
+ Ethics Studio ↑ +
+ {% endif %}
@@ -28,6 +33,9 @@ {% if ex_type == "LAN"%} {% endif %} + {% if ex_type == "ES"%} + + {% endif %}
{{event.title}}