20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ define "header" }}
 | 
						|
  {{ partial "header.html" . }}
 | 
						|
{{ end }}
 | 
						|
 | 
						|
{{ define "main" }}
 | 
						|
{{- range .Pages.ByDate.GroupByDate "2006" -}}
 | 
						|
<h5>{{ .Key | title }}</h5>
 | 
						|
<ul>
 | 
						|
  {{- range .Pages -}}
 | 
						|
    {{- if or (not .Draft) (not hugo.IsProduction) -}}
 | 
						|
      {{- .Render "li_grid_with_date" -}}
 | 
						|
    {{- end -}}
 | 
						|
  {{- end -}}
 | 
						|
</ul>
 | 
						|
{{- end -}}
 | 
						|
{{ end }}
 | 
						|
 | 
						|
{{ define "footer" }}
 | 
						|
  {{ partial "footer.html" . }}
 | 
						|
{{ end }}
 |