mirror of
				https://github.com/Brandon-Rozek/website-theme.git
				synced 2025-10-31 09:51:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{ define "main"}}
 | |
|   {{ partial "header.html" . }}
 | |
|   <main>
 | |
|     <style>main { text-align: left; }</style>
 | |
|     {{ partial "search.html" . }}
 | |
|     {{ .Content }}
 | |
|     {{ $listPageDateFormat := .Site.Params.listPageDateFormat | default "January, 2006"}}
 | |
|     {{ range $index, $value := .Pages.GroupByDate $listPageDateFormat }}
 | |
|     {{ range .Pages }}
 | |
|       {{ $dataJ := dict "account" .Params.account
 | |
|                         "account.display_name" .Params.account.display_name
 | |
|                         "created_at" .Date
 | |
|                         "content" .Content
 | |
|                         "media_attachments" .Params.media_attachments
 | |
|                         "Permalink" .Permalink
 | |
|                         "tags" .Params.tags
 | |
|                         "url" .Params.syndication
 | |
|                         "replies_count" .Params.replies_count
 | |
|                         "reblogs_count" .Params.reblogs_count
 | |
|                         "favourites_count" .Params.favourites_count
 | |
|       }}
 | |
| 
 | |
|       {{ .Scratch.Set "toot" $dataJ }}
 | |
|       {{ partial "external/toot.html" . }}
 | |
|     {{ end }}
 | |
|     {{ end }}
 | |
|   </main>
 | |
|   {{ partial "footer.html" . }}
 | |
| {{ end }}
 |