You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
25 lines
1.1 KiB
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
<div class="theindexpage content-block">
|
|
|
|
<h2>Folders index</h2>
|
|
|
|
<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>
|
|
|
|
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">
|
|
{% block index %}
|
|
{% for each in index_dict %}
|
|
{% set address = "/description?id=" + each %}
|
|
<a href={{address}} class="li-index"><span>{{loop.index}}. {{index_dict[each]}}</span></a><br />
|
|
{% endfor %}
|
|
{% endblock index %}
|
|
</div>
|
|
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|