Scrollspy

This commit is contained in:
Simon Martens
2025-09-21 14:19:04 +02:00
parent 758ded07fa
commit f6af0cfa62
8 changed files with 169 additions and 163 deletions

View File

@@ -1,7 +1,7 @@
{{ $a := . }}
{{ $pieces := LookupPieces $a }}
{{ if ne (len $pieces) 0 }}
<div class="mt-4">
<div class="mt-4 akteur-beitraege-section">
<div class="py-1 rounded-lg mb-1">
<h2 class="text-lg font-bold">
<i class="ri-newspaper-line mr-2"></i><u class="decoration underline-offset-3">Beiträge</u>
@@ -39,12 +39,10 @@
<div class="columns-2 gap-6">
{{- /* Display grouped pieces */ -}}
{{- range $groupKey, $groupedItems := $groupedPieces -}}
<div class="break-inside-avoid">
<div class="break-inside-avoid pl-4">
<div class="text-lg pb-1">
{{- /* Use first piece for display text */ -}}
<span class="inline-block indent-6">
{{ template "_piece_summary" (dict "Piece" (index $groupedItems 0).Item "CurrentActorID" $a.ID) }}
</span>
{{- /* Show all citations from all pieces in this group */ -}}
{{- range $_, $groupItem := $groupedItems -}}
@@ -70,7 +68,7 @@
</div>
</div>
{{- end -}}
</div>
</div>
</div>
</div>
{{ end }}

View File

@@ -1,7 +1,7 @@
{{ $a := . }}
{{ $works := LookupWorks $a }}
{{- if ne (len $works) 0 -}}
<div class="mt-4">
<div class="mt-4 akteur-werke-section">
<div class="py-1 rounded-lg mb-1">
<h2 class="text-lg font-bold">
<i class="ri-book-line mr-2"></i><u class="decoration underline-offset-3">Werke</u>

View File

@@ -0,0 +1,32 @@
{{- /* Shared two-column layout with scrollspy navigation for agent pages */ -}}
{{- $agents := .Agents -}}
{{- $sorted := .Sorted -}}
<!-- Two Column Layout: Scrollspy + Content -->
<div class="flex gap-8">
<!-- Scrollspy Navigation - Hidden on smaller screens, shown on 2xl+ -->
<div class="hidden 2xl:block w-96 flex-shrink-0">
<div class="sticky top-0 max-h-screen bg-white rounded py-4 flex flex-col border-x-6 border-white">
<nav class="flex-1 overflow-y-auto overscroll-contain" id="scrollspy-nav">
{{ range $_, $id := $sorted }}
{{ $a := index $agents $id }}
<a href="#author-{{ $id }}"
class="block px-2 py-0.5 text-lg text-gray-900 scrollspy-link no-underline box-content"
data-target="author-{{ $id }}">
{{ index $a.Names 0 }}
</a>
{{ end }}
</nav>
</div>
</div>
<!-- People List - Main Content -->
<div class="flex-1 space-y-6 bg-white">
{{ range $_, $id := $sorted }}
{{ $a := index $agents $id }}
<div id="author-{{ $id }}" class="p-6 scroll-mt-8 author-section">
{{ template "_akteur" $a }}
</div>
{{ end }}
</div>
</div>