mirror of
				https://github.com/Theodor-Springmann-Stiftung/musenalm.git
				synced 2025-10-30 17:55:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			620 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			620 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {{ $model := . }}
 | |
| {{ $r := $model.series }}
 | |
| 
 | |
| 
 | |
| <div class="container-normal flex flex-col font-serif mt-16">
 | |
| 	<div class="grow-0 max-w-[48rem]">
 | |
| 		<div>
 | |
| 			<span class="font-bold">{{ $r.Title }}</span>
 | |
| 			{{ if $r.References }}
 | |
| 				<div class="text-sm font-sans px-2 py-1 ml-2 bg-stone-100 w-max inline-block">
 | |
| 					{{ $r.References }}
 | |
| 				</div>
 | |
| 			{{ end }}
 | |
| 		</div>
 | |
| 		{{ if $r.Annotation }}
 | |
| 			<div class="max-w-[48rem]">
 | |
| 				<span class="">{{ Safe $r.Annotation }}</span>
 | |
| 			</div>
 | |
| 		{{ end }}
 | |
| 		<div class="">
 | |
| 			{{ template "_reiherelations" (Arr $r $model.relations $model.entries true) }}
 | |
| 		</div>
 | |
| 	</div>
 | |
| </div>
 | 
