Anfang Handschriften

This commit is contained in:
Simon Martens
2023-02-03 01:29:40 +01:00
parent 29a9428207
commit f4000cdd13
3 changed files with 26 additions and 4 deletions

View File

@@ -7,3 +7,15 @@ eleventyNavigation:
order: 1
pdf: yes
---
<div class="mt-4 w-full" id="list">
{%- for post in collections.handschriften -%}
<div class="handschrift-sammlung w-full mb-12">
<div class="text-xl font-bold pb-4">{{ post.data.Ort | safe }}</div>
<div class="flex flex-row flex-wrap gap-x-4 gap-y-4 justify-start ">{{ post.content | safe }}</div>
</div>
{%- endfor -%}
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

View File

@@ -113,7 +113,16 @@
@apply !indent-0 !pl-0 text-base
}
p {
.handschrift-sammlung .gruppe {
@apply border w-1/4 p-2
}
.handschrift-sammlung .ueberschrift-gruppe {
@apply w-full
}
.handschrift-sammlung .feld {
@apply text-sm block bg-slate-200 rounded px-1.5 py-0.5 font-bold
}
}
@@ -129,3 +138,4 @@
min-height: 100vh;
max-height: calc(10rem + 100vh);
}