Statische Dtaein + Übersetzungen hinzugefügt
15
.eleventy.js
@@ -2,6 +2,21 @@ const eleventyNavigationPlugin = require("@11ty/eleventy-navigation");
|
|||||||
|
|
||||||
module.exports = function (config) {
|
module.exports = function (config) {
|
||||||
|
|
||||||
|
config.addCollection("uebersetzungen", function(collectionApi) {
|
||||||
|
return collectionApi
|
||||||
|
.getFilteredByGlob("**/lists/uebersetzungen/*.html")
|
||||||
|
.sort(function(a, b) {
|
||||||
|
if (a.data.Sprache !== null && b.data.Sprache !== null &&
|
||||||
|
a.data.Sprache !== b.data.Sprache) {
|
||||||
|
return a.data.Sprache.localeCompare(b.data.Sprache);
|
||||||
|
} else if (a.data.Sort !== null && b.data.Sort !== null &&
|
||||||
|
a.data.Sort !== b.data.Sort) {
|
||||||
|
return a.data.Sort - b.data.Sort;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
config.addCollection("sekundaer", function(collectionApi) {
|
config.addCollection("sekundaer", function(collectionApi) {
|
||||||
return collectionApi
|
return collectionApi
|
||||||
.getFilteredByGlob("**/lists/sekundaerliteratur/*.html")
|
.getFilteredByGlob("**/lists/sekundaerliteratur/*.html")
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
---
|
---
|
||||||
title: Forschungsbibliographie & Übersetzungen
|
title: Forschungsbibliographie
|
||||||
description: Forschungsliteratur und Übersetzungen zu Leben und Werk von Jacob Michael Reinhold Lenz
|
description: Forschungsliteratur zu Leben und Werk von Jacob Michael Reinhold Lenz
|
||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Forschungsbibliographie
|
key: Forschungsbibliographie
|
||||||
parent: Verzeichnisse
|
parent: Verzeichnisse
|
||||||
order: 5
|
order: 6
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
@@ -24,6 +24,7 @@ eleventyNavigation:
|
|||||||
Jahr
|
Jahr
|
||||||
<select onchange="window.location.href=this.value" id="listselect">
|
<select onchange="window.location.href=this.value" id="listselect">
|
||||||
{% set jahr = "" %}
|
{% set jahr = "" %}
|
||||||
|
{% set currjahr = "" %}
|
||||||
{% set count = 0 %}
|
{% set count = 0 %}
|
||||||
{%- for post in collections.sekundaer -%}
|
{%- for post in collections.sekundaer -%}
|
||||||
{% if count % 50 == 0 and jahr !== post.data.Jahr %}
|
{% if count % 50 == 0 and jahr !== post.data.Jahr %}
|
||||||
@@ -31,7 +32,11 @@ eleventyNavigation:
|
|||||||
{% set jahr = post.data.Jahr %}
|
{% set jahr = post.data.Jahr %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% set count = count + 1 %}
|
{% set count = count + 1 %}
|
||||||
|
{% set currjahr = post.data.Jahr %}
|
||||||
{%- endfor -%}
|
{%- endfor -%}
|
||||||
|
{%- if currjahr !== jahr %}
|
||||||
|
<option value="#{{ currjahr }}">{{ currjahr }}</option>
|
||||||
|
{%- endif -%}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<button id="scrollbutton" href="#top">↑ hoch</button>
|
<button id="scrollbutton" href="#top">↑ hoch</button>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ description: Verzeichnis von Theateraufführungen ab 1950 von Jacob Michael Rein
|
|||||||
eleventyNavigation:
|
eleventyNavigation:
|
||||||
key: Theateraufführungen ab 1950
|
key: Theateraufführungen ab 1950
|
||||||
parent: Verzeichnisse
|
parent: Verzeichnisse
|
||||||
order: 6
|
order: 7
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="mb-4 hyphenation w-full">
|
<div class="mb-4 hyphenation w-full">
|
||||||
|
|||||||
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 %}
|
{% endif %}
|
||||||
{% set werk = post.data.Werk %}
|
{% set werk = post.data.Werk %}
|
||||||
<div class="category !mb-12" id="{{ 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">
|
<div class="categorybody grow shrink-0 basis-4/5">
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="searchable">{{ post.content | safe }}</div>
|
<div class="searchable">{{ post.content | safe }}</div>
|
||||||
|
|||||||
BIN
src/static/chronik/bild für chronik homepage.tif
Normal file
BIN
src/static/chronik/chronik karte 8 april 2021.tif
Normal file
@@ -130,7 +130,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.yearlist .category .categorytitle {
|
.yearlist .category .categorytitle {
|
||||||
@apply text-xl pr-1 pl-3 grow-0 min-w-[4rem] font-bold self-start z-0 sticky top-14 sm:order-2
|
@apply text-xl pr-1 pl-3 min-w-[4rem] font-bold self-start z-0 sticky top-14 sm:order-2 shrink-0 grow-0 basis-1/12
|
||||||
}
|
}
|
||||||
|
|
||||||
.yearlist .category .categorybody {
|
.yearlist .category .categorybody {
|
||||||
|
|||||||
BIN
src/static/handschriften/Stargardt Nr 1779-1780.pdf
Normal file
BIN
src/static/handschriften/auzeville1.jpg
Normal file
|
After Width: | Height: | Size: 440 KiB |
BIN
src/static/handschriften/auzeville2.jpg
Normal file
|
After Width: | Height: | Size: 448 KiB |
BIN
src/static/handschriften/breslauer 324.pdf
Normal file
BIN
src/static/handschriften/froitzheim.jpg
Normal file
|
After Width: | Height: | Size: 384 KiB |
BIN
src/static/handschriften/götz1.jpg
Normal file
|
After Width: | Height: | Size: 1.4 MiB |
BIN
src/static/handschriften/götz2.jpg
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
BIN
src/static/handschriften/henrici.jpg
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
src/static/handschriften/lenz brief tss.tif
Normal file
BIN
src/static/handschriften/müller1.jpg
Normal file
|
After Width: | Height: | Size: 552 KiB |
BIN
src/static/handschriften/müller2.jpg
Normal file
|
After Width: | Height: | Size: 556 KiB |
BIN
src/static/handschriften/müller3.jpg
Normal file
|
After Width: | Height: | Size: 600 KiB |
BIN
src/static/index/bild startseite archiv 1.jpg
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
src/static/index/lenzbrief schlosser hd für startseite.png
Normal file
|
After Width: | Height: | Size: 4.5 MiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
|
Before Width: | Height: | Size: 247 B After Width: | Height: | Size: 247 B |
BIN
src/static/posthumedrucke/1883stuermerundraenger.pdf
Normal file
BIN
src/static/posthumedrucke/1884drama.pdf
Normal file
BIN
src/static/posthumedrucke/1891gedichte.pdf
Normal file
BIN
src/static/sebststaendigedrucke/anmerkungen.pdf
Normal file
BIN
src/static/sebststaendigedrucke/aufsaezze.pdf
Normal file
BIN
src/static/sebststaendigedrucke/eloge.pdf
Normal file
BIN
src/static/sebststaendigedrucke/englaender.pdf
Normal file
BIN
src/static/sebststaendigedrucke/freunde.pdf
Normal file
BIN
src/static/sebststaendigedrucke/hofmeister.pdf
Normal file
BIN
src/static/sebststaendigedrucke/kant.pdf
Normal file
BIN
src/static/sebststaendigedrucke/landplagen.pdf
Normal file
BIN
src/static/sebststaendigedrucke/lustspiele.pdf
Normal file
BIN
src/static/sebststaendigedrucke/menalk.pdf
Normal file
BIN
src/static/sebststaendigedrucke/menoza.pdf
Normal file
BIN
src/static/sebststaendigedrucke/meynungen.pdf
Normal file
BIN
src/static/sebststaendigedrucke/petrarch.pdf
Normal file
BIN
src/static/sebststaendigedrucke/soldaten.pdf
Normal file
BIN
src/static/sebststaendigedrucke/uebersicht.pdf
Normal file
BIN
src/static/sebststaendigedrucke/uebersicht1790.pdf
Normal file
BIN
src/static/sebststaendigedrucke/vertheidigung.pdf
Normal file
BIN
src/static/sebststaendigedrucke/vorlesungen.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/0001.jpg
Normal file
|
After Width: | Height: | Size: 661 KiB |
BIN
src/static/unselbststaendigedrucke/0002.jpg
Normal file
|
After Width: | Height: | Size: 614 KiB |
BIN
src/static/unselbststaendigedrucke/0003.jpg
Normal file
|
After Width: | Height: | Size: 663 KiB |
BIN
src/static/unselbststaendigedrucke/0004.jpg
Normal file
|
After Width: | Height: | Size: 683 KiB |
BIN
src/static/unselbststaendigedrucke/0005.jpg
Normal file
|
After Width: | Height: | Size: 685 KiB |
BIN
src/static/unselbststaendigedrucke/0006.jpg
Normal file
|
After Width: | Height: | Size: 594 KiB |
BIN
src/static/unselbststaendigedrucke/0007.jpg
Normal file
|
After Width: | Height: | Size: 634 KiB |
BIN
src/static/unselbststaendigedrucke/aar.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/als einer dem verfasser.jpg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
src/static/unselbststaendigedrucke/an das herz.jpg
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
src/static/unselbststaendigedrucke/archiplagiarius.jpg
Normal file
|
After Width: | Height: | Size: 944 KiB |
BIN
src/static/unselbststaendigedrucke/die akademie der thiere.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/elysium.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/fragment über die mode.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/gespräch kantor organist.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/in einem gärtchen.jpg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
src/static/unselbststaendigedrucke/ist das epigram.jpg
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
src/static/unselbststaendigedrucke/lied eines.jpg
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
src/static/unselbststaendigedrucke/merkur und mistriß modish.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/minna1.jpg
Normal file
|
After Width: | Height: | Size: 1009 KiB |
BIN
src/static/unselbststaendigedrucke/minna2.jpg
Normal file
|
After Width: | Height: | Size: 1023 KiB |
BIN
src/static/unselbststaendigedrucke/myrsai polagi.pdf
Normal file
BIN
src/static/unselbststaendigedrucke/poetische malerey.jpg
Normal file
|
After Width: | Height: | Size: 906 KiB |
BIN
src/static/unselbststaendigedrucke/pygamlion1.jpg
Normal file
|
After Width: | Height: | Size: 1022 KiB |
BIN
src/static/unselbststaendigedrucke/pygmalion2.jpg
Normal file
|
After Width: | Height: | Size: 934 KiB |
BIN
src/static/unselbststaendigedrucke/recensenten.jpg
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
src/static/unselbststaendigedrucke/strephon.jpg
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
src/static/unselbststaendigedrucke/über die kritischen.jpg
Normal file
|
After Width: | Height: | Size: 1.0 MiB |