mirror of
				https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
				synced 2025-10-31 09:55:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			404 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			404 B
		
	
	
	
		
			Cheetah
		
	
	
	
	
	
| {{ define "body" }}
 | |
| 	{{ range $year := .model.AvailableYears }}
 | |
| 		<a href="/{{ $year }}">{{ $year }}</a>
 | |
| 	{{ end }}
 | |
| 	{{ range $issue := .model.Issues }}
 | |
| 		<div>
 | |
| 			<div>
 | |
| 				{{ $issue.Number.Chardata }}
 | |
| 			</div>
 | |
| 			<div>
 | |
| 				{{ index $issue.Month 1 }}
 | |
| 			</div>
 | |
| 			<div>
 | |
| 				{{ index $issue.Weekday 1 }}
 | |
| 			</div>
 | |
| 			<div>{{ $issue.Day }}.{{ index $issue.Month 2 }}.</div>
 | |
| 		</div>
 | |
| 	{{ end }}
 | |
| {{ end }}
 | 
