mirror of
https://github.com/Theodor-Springmann-Stiftung/jacoblenz.git
synced 2025-10-28 16:55:33 +00:00
53 lines
2.0 KiB
Plaintext
53 lines
2.0 KiB
Plaintext
---
|
|
title: Theateraufführungen ab 1950
|
|
description: Verzeichnis von Theateraufführungen ab 1950 von Jacob Michael Reinhold Lenz
|
|
eleventyNavigation:
|
|
key: Theateraufführungen ab 1950
|
|
parent: Verzeichnisse
|
|
order: 6
|
|
---
|
|
|
|
<div class="mb-4 hyphenation w-full">
|
|
<p class="mb-4 max-w-[80ch]">Deutschland, Österreich, Schweiz. Zusammengetragen von Dr. Judith Schäfer
|
|
|
|
<p class="mb-4 max-w-[80ch]">Berücksichtigt sind nur Inszenierungen von Werken, von denen Lenz im engeren Sinne der Autor ist (also nicht Opernbearbeitungen, biographische Annäherungen, Büchners „Lenz“ etc.). Ergänzungen sind jederzeit willkommen.
|
|
</div>
|
|
|
|
<div class="searchbar">
|
|
<input type="text" name="keyword" class="form-control input-sm" placeholder="Liste durchsuchen...">
|
|
<button class="showifsearching" onclick="var input = this.previousElementSibling; input.value = ''; input.focus(); search();" alt="Clear the search form">Suche abbrechen</button>
|
|
<div class="hideifsearching">
|
|
Jahr
|
|
<select onchange="window.location.href=this.value" id="listselect">
|
|
{% set jahr = "" %}
|
|
{% set count = 0 %}
|
|
{%- for post in collections.theater -%}
|
|
{% if count % 1 == 0 and jahr !== post.data.Jahr %}
|
|
<option value="#{{ post.data.Jahr }}">{{ post.data.Jahr }}</option>
|
|
{% set jahr = post.data.Jahr %}
|
|
{% endif %}
|
|
{% set count = count + 1 %}
|
|
{%- endfor -%}
|
|
</select>
|
|
</div>
|
|
<button id="scrollbutton" href="#top">↑ hoch</button>
|
|
</div>
|
|
|
|
<div class="yearlist" id="list">
|
|
{% set jahr = "" %}
|
|
{%- for post in collections.theater -%}
|
|
{% if post.data.Jahr !== jahr %}
|
|
{% if jahr !== "" %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% set jahr = post.data.Jahr %}
|
|
<div class="category" id="{{ jahr }}">
|
|
<div class="categorytitle" >{{ jahr }}</div>
|
|
<div class="categorybody">
|
|
{% endif %}
|
|
<div class="searchable">{{ post.content | safe }}</div>
|
|
{%- endfor -%}
|
|
</div>
|
|
</div>
|
|
</div> |