mirror of
				https://github.com/Brandon-Rozek/website-theme.git
				synced 2025-10-31 01:41:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main"}}
 | |
|   {{ partial "header.html" . }}
 | |
|   <main>
 | |
|   {{ partial "search.html" . }}
 | |
|   {{ partial "tags/all.html" . }}
 | |
|   <!-- contents -->
 | |
|   <div id="contentsList">
 | |
|     {{ $listPageDateFormat := .Site.Params.listPageDateFormat | default "January, 2006"}}
 | |
|     {{ range $index, $value := .Pages.GroupByDate $listPageDateFormat }}
 | |
|       {{ if (ne $index 0) }}
 | |
|         <hr class="separator">
 | |
|       {{ end }}
 | |
|       <p class="date">{{ .Key }}</p>
 | |
|       {{ range .Pages }}
 | |
|         <p><a href="{{ .Permalink }}">{{ .Title }}</a></p>
 | |
|       {{ end }}
 | |
|     {{ end }}
 | |
|   </div>
 | |
|   </main>
 | |
|   {{ partial "footer.html" . }}
 | |
| {{ end }}
 |