mirror of
				https://github.com/Brandon-Rozek/website-theme.git
				synced 2025-11-04 11:31:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 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>
 | 
						|
{{ end }}
 |