mirror of
https://github.com/Theodor-Springmann-Stiftung/jacoblenz.git
synced 2025-11-02 19:25:34 +00:00
Statische Dtaein + Übersetzungen hinzugefügt
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
---
|
||||
title: Forschungsbibliographie & Übersetzungen
|
||||
description: Forschungsliteratur und Übersetzungen zu Leben und Werk von Jacob Michael Reinhold Lenz
|
||||
title: Forschungsbibliographie
|
||||
description: Forschungsliteratur zu Leben und Werk von Jacob Michael Reinhold Lenz
|
||||
eleventyNavigation:
|
||||
key: Forschungsbibliographie
|
||||
parent: Verzeichnisse
|
||||
order: 5
|
||||
order: 6
|
||||
---
|
||||
|
||||
|
||||
@@ -24,6 +24,7 @@ eleventyNavigation:
|
||||
Jahr
|
||||
<select onchange="window.location.href=this.value" id="listselect">
|
||||
{% set jahr = "" %}
|
||||
{% set currjahr = "" %}
|
||||
{% set count = 0 %}
|
||||
{%- for post in collections.sekundaer -%}
|
||||
{% if count % 50 == 0 and jahr !== post.data.Jahr %}
|
||||
@@ -31,7 +32,11 @@ eleventyNavigation:
|
||||
{% set jahr = post.data.Jahr %}
|
||||
{% endif %}
|
||||
{% set count = count + 1 %}
|
||||
{% set currjahr = post.data.Jahr %}
|
||||
{%- endfor -%}
|
||||
{%- if currjahr !== jahr %}
|
||||
<option value="#{{ currjahr }}">{{ currjahr }}</option>
|
||||
{%- endif -%}
|
||||
</select>
|
||||
</div>
|
||||
<button id="scrollbutton" href="#top">↑ hoch</button>
|
||||
|
||||
@@ -4,7 +4,7 @@ description: Verzeichnis von Theateraufführungen ab 1950 von Jacob Michael Rein
|
||||
eleventyNavigation:
|
||||
key: Theateraufführungen ab 1950
|
||||
parent: Verzeichnisse
|
||||
order: 6
|
||||
order: 7
|
||||
---
|
||||
|
||||
<div class="mb-4 hyphenation w-full">
|
||||
|
||||
47
src/dynamic/uebersetzungen.njk
Normal file
47
src/dynamic/uebersetzungen.njk
Normal file
@@ -0,0 +1,47 @@
|
||||
---
|
||||
title: Übersetzungen
|
||||
description: Übersetzungen von Werken von Jacob Michael Reinhold Lenz
|
||||
eleventyNavigation:
|
||||
key: Übersetzungen
|
||||
parent: Verzeichnisse
|
||||
order: 5
|
||||
---
|
||||
|
||||
<div class="searchbar">
|
||||
<input type="text" name="keyword" class="form-control input-sm" placeholder="Liste durchsuchen...">
|
||||
<button class="showifsearching" onclick="searchreset();" alt="Clear the search form">Zurücksetzen</button>
|
||||
<div class="hideifsearching">
|
||||
Sprache
|
||||
<select onchange="window.location.href=this.value" id="listselect">
|
||||
{% set sprache = "" %}
|
||||
{% set count = 0 %}
|
||||
{%- for post in collections.uebersetzungen -%}
|
||||
{% if count % 1 == 0 and sprache !== post.data.Sprache %}
|
||||
<option value="#{{ post.data.Sprache }}">{{ post.data.Sprache }}</option>
|
||||
{% set sprache = post.data.Sprache %}
|
||||
{% endif %}
|
||||
{% set count = count + 1 %}
|
||||
{%- endfor -%}
|
||||
</select>
|
||||
</div>
|
||||
<button id="scrollbutton" href="#top">↑ hoch</button>
|
||||
</div>
|
||||
|
||||
<div class="yearlist" id="list">
|
||||
{% set sprache = "" %}
|
||||
{%- for post in collections.uebersetzungen -%}
|
||||
{% if post.data.Sprache !== sprache %}
|
||||
{% if sprache !== "" %}
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% set sprache = post.data.Sprache %}
|
||||
<div class="category" id="{{ sprache }}">
|
||||
<div class="categorytitle !basis-2/12" >{{ sprache }}</div>
|
||||
<div class="categorybody">
|
||||
{% endif %}
|
||||
<div class="searchable">{{ post.content | safe }}</div>
|
||||
{%- endfor -%}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -45,7 +45,7 @@ eleventyNavigation:
|
||||
{% endif %}
|
||||
{% set werk = post.data.Werk %}
|
||||
<div class="category !mb-12" id="{{ werk }}">
|
||||
<div class="categorytitle grow-0 basis-1/5" >{{ werk }}</div>
|
||||
<div class="categorytitle grow-0 !basis-1/5" >{{ werk }}</div>
|
||||
<div class="categorybody grow shrink-0 basis-4/5">
|
||||
{% endif %}
|
||||
<div class="searchable">{{ post.content | safe }}</div>
|
||||
|
||||
Reference in New Issue
Block a user