mirror of
https://github.com/Theodor-Springmann-Stiftung/jacoblenz.git
synced 2025-10-29 09:15:34 +00:00
53 lines
2.1 KiB
Plaintext
53 lines
2.1 KiB
Plaintext
---
|
|
title: Selbstständige Veröffentlichungen zu Lebzeiten
|
|
description: Verzeichnis zu Lebzeiten veröffentlichter selbstständiger Drucke des Dichters Jacob Michael Reinhold Lenz
|
|
eleventyNavigation:
|
|
key: Selbstständige Drucke zu Lebzeiten
|
|
parent: Verzeichnisse
|
|
order: 2
|
|
pdf: yes
|
|
---
|
|
|
|
<div class="border-black px-4 py-3 mb-4 order-2 hyphenation bg-gray-100 w-full">
|
|
<p class="max-w-[80ch]">Neben den selbständig erschienenen Einzel- und Werkausgaben sind in Auswahl auch Textsammlungen zum Sturm und Drang mit umfangreicheren Lenz-Abteilungen aufgeführt.
|
|
</div>
|
|
|
|
<div class="sticky top-0 z-20">
|
|
<div class="z-10 bg-slate-100 px-4 py-2 self-start w-full">
|
|
<div class="w-full flex flex-row items-baseline">
|
|
<input class="grow p-0.5 my-1 mb-2 border border-slate-300" type="text" name="keyword" class="form-control input-sm" placeholder="Liste durchsuchen...">
|
|
<a class="shrink ml-2 px-1.5 py-0.5 border border-slate-400" id="scrollbutton" href="#top">↑ nach oben</a>
|
|
</div>
|
|
{% set jahr = "" %}
|
|
{% set count = 1 %}
|
|
<div class="hideifsearching">
|
|
Springe:
|
|
{%- for post in collections.selbststaendigedrucke -%}
|
|
{% if count % 1 == 0 and jahr !== post.data.Jahr %}
|
|
<a class="underline decoration-dotted" href="#{{ post.data.Jahr }}">{{ post.data.Jahr }}</a>
|
|
{% set jahr = post.data.Jahr %}
|
|
{% endif %}
|
|
{% set count = count + 1 %}
|
|
{%- endfor -%}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-4" id="list">
|
|
{% set jahr = "" %}
|
|
{%- for post in collections.selbststaendigedrucke -%}
|
|
{% if post.data.Jahr !== jahr %}
|
|
{% if jahr !== "" %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% set jahr = post.data.Jahr %}
|
|
<div class="flex flex-row w-full category" id="{{ jahr }}">
|
|
<div class="text-xl pr-1 pl-3 py-2 grow-0 min-w-[4rem] font-bold self-start z-0 sticky top-20 order-2" >{{ jahr }}</div>
|
|
<div class="px-4 border-r-2 grow py-2 border-slate-400">
|
|
{% endif %}
|
|
<div class="mb-3 pl-6 -indent-6 max-w-[90ch] searchable">{{ post.content | safe }}</div>
|
|
{%- endfor -%}
|
|
</div>
|
|
</div>
|
|
</div> |