diff --git a/app/static/css/style.css b/app/static/css/style.css index 0f5cae9..c46c0fd 100755 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -38,7 +38,17 @@ audio { width: 100%; } -.navigation ul { +ul { + list-style-type:none; + line-height: 1.5em; +} + +ul em{ + font-style: normal; + font-weight:bold; +} + +.navigation ul{ list-style-type: none; padding: 0; display: flex; diff --git a/app/templates/about.html b/app/templates/about.html index c592616..857a9cc 100755 --- a/app/templates/about.html +++ b/app/templates/about.html @@ -4,11 +4,44 @@

About

-

This webpage is part of the projekt Hunting Mosquitos by Angeliki Diakrousi

-

- The site is running on a flask instance, storing data in a SQLite database. The location is tracked using the geolocation API. Audio is recorded through the WebAudio API. -

+

This webpage is part of the artwork Hunting Mosquitos by Angeliki Diakrousi. It is a geolocative app that allows navigation in the city through mapping hang-outs and installations of Mosquitos. It invites you to playfully explore the city and participate in a discussion around public spaces. The web app is developed by Alex Roidl.

+ +

The site is running on a flask instance, storing data in a sqlite database. The location is tracked using the geolocation api. Audio is recorded through the webaudio api.

+ +

If you have any questions contact:

info at huntingmosquitos.nl

+ +
+
+

How to use

+ +
+ +
{% endblock %} diff --git a/app/templates/privacy.html b/app/templates/privacy.html index e9b7b4e..151be52 100755 --- a/app/templates/privacy.html +++ b/app/templates/privacy.html @@ -4,7 +4,11 @@

Privacy Statement

-

Please note that all data submitted to this platform will be part of the exhibition.

+

By submitting your contribution with comments/data, you agree that your contribution will be published/used in the context of the artwork/project, including public exhibitions and publications about the artwork, and waive any copyright claims in the broadest sense.

+ +

Content that infringes privacy will be deleted.

+ +

The site stores coordinates, audio and text messages. No other private data are stored.

diff --git a/app/templates/privacy_note_submit.html b/app/templates/privacy_note_submit.html index e753ec4..682447a 100755 --- a/app/templates/privacy_note_submit.html +++ b/app/templates/privacy_note_submit.html @@ -1,2 +1,2 @@

Are you sure you want to add {{ longitude }}, {{ latitude }} to the map?

-

Please note that all data submitted need to conform to the privacy statement. By submitting you agree that you have read and understood the statement.

\ No newline at end of file +

Please note that all data submitted need to conform to the privacy statement. By submitting you agree that you have read and understood the statement.

\ No newline at end of file diff --git a/app/templates/questions.html b/app/templates/questions.html new file mode 100755 index 0000000..954b3f4 --- /dev/null +++ b/app/templates/questions.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block main %} +
+

Questions

+
+

During visits at I developed a series of questions, that was based on documents and online material around this topic. Katarina Jazbec and Setareh Noorani initially joined in forming questions and initiate a series of informal interviews and conversations with frequenters and inhabitants around those spots.

+ +

to frequenters

sound and device

embodied experience

hanging out

negotiations

to inhabitants

activation and device

nuisance problem

safety


+

to both

+ +
+
+ +{% endblock %} diff --git a/app/views.py b/app/views.py index caec8fa..10e43d4 100755 --- a/app/views.py +++ b/app/views.py @@ -168,6 +168,12 @@ def privacy(): """Render the website's about page.""" return render_template('privacy.html') +@app.route('/questions/') +def questions(): + """Render the website's about page.""" + return render_template('questions.html') + + @app.route('/about/') def about(): """Render the website's about page."""