mirror of
				https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
				synced 2025-10-31 01:55:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			823 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			823 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {{ $model := .model }}
 | |
| 
 | |
| 
 | |
| <div>Inhalt</div>
 | |
| <div>
 | |
| 	{{ range  $page := $model.Pages }}
 | |
| 		<div>
 | |
| 			<div>Seite {{ $page }}</div>
 | |
| 
 | |
| 			{{ range $piece := (index $model.Pieces $page) }}
 | |
| 
 | |
| 				{{ template "_inhaltsverzeichnis_eintrag" $piece }}
 | |
| 
 | |
| 
 | |
| 				<!-- Links zu anderen Teilen: -->
 | |
| 				{{ if gt (len $piece.IssueRefs) 1 }}
 | |
| 					<div>
 | |
| 						{{ len $piece.IssueRefs }} Teile:
 | |
| 						<ol>
 | |
| 							{{ range $issue := $piece.IssueRefs }}
 | |
| 								<li>
 | |
| 									<a
 | |
| 										href="/{{- $issue.Datum -}}/{{- $issue.Nr -}}"
 | |
| 										{{ if and (eq $issue.Nr $model.No) (eq $issue.Datum $model.Year) }}
 | |
| 											aria-current="page"
 | |
| 										{{ end }}>
 | |
| 										{{- $issue.Datum }} Nr.
 | |
| 										{{ $issue.Nr -}}
 | |
| 									</a>
 | |
| 								</li>
 | |
| 							{{ end }}
 | |
| 						</ol>
 | |
| 					</div>
 | |
| 				{{ end }}
 | |
| 
 | |
| 			{{ end }}
 | |
| 
 | |
| 		</div>
 | |
| 	{{ end }}
 | |
| </div>
 | 
