PushingScores/templates/theindex.html

26 lines
1.1 KiB
HTML
Raw Normal View History

2019-05-27 12:05:42 +02:00
{% extends "layout.html" %}
{% block content %}
<div class="theindexpage content-block">
2019-05-29 11:54:46 +02:00
2019-05-31 17:17:39 +02:00
<h2>Folders index</h2>
2019-05-29 11:54:46 +02:00
2019-12-15 00:50:38 +01:00
<div class="index_intro column">
Pushing Scores is a two-year artistic research project, initiated by <a target="_blank" href="https://www.deplayer.nl/">De Player</a> and graphic designer Remco van Bladel. Throughout 2016 and 2018, this project researched the phenomenon of notation and the graphic representation of music. It unfolded through a nomadic program which included the creation of newly commissioned artworks and public events addressing contemporary questions and issues in this particular field.<br><br>
2019-05-29 11:54:46 +02:00
2019-12-15 00:50:38 +01:00
This archival web publication was generated out of this research. For an overview of the collection that is making up this website, see the items listed below.
</div>
<div class="foldersindex">
2019-05-29 11:54:46 +02:00
{% block index %}
{% for each in index_dict %}
{% set address = "/description?id=" + each %}
2019-12-15 00:50:38 +01:00
<a href={{address}} class="li-index"><span>{{loop.index}}. {{index_dict[each]}}</span></a><br />
2019-05-29 11:54:46 +02:00
{% endfor %}
{% endblock index %}
2019-12-15 00:50:38 +01:00
</div>
2019-05-27 20:17:45 +02:00
2019-05-27 12:05:42 +02:00
2019-05-29 11:54:46 +02:00
</div>
2019-05-27 17:32:05 +02:00
{% endblock %}