mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-04 10:22:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{- define "main" }}
 | 
						|
 | 
						|
<header class="page-header">
 | 
						|
  <h1>{{ .Title }}</h1>
 | 
						|
</header>
 | 
						|
 | 
						|
{{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
 | 
						|
{{- range $pages.GroupByPublishDate "2006" }}
 | 
						|
{{- if ne .Key "0001" }}
 | 
						|
<div class="archive-year">
 | 
						|
  <h2 class="archive-year-header">
 | 
						|
    {{- replace .Key "0001" "" }}<sup class="archive-count">  {{ len .Pages }}</sup>
 | 
						|
  </h2>
 | 
						|
  {{- range .Pages.GroupByDate "January" }}
 | 
						|
  <div class="archive-month">
 | 
						|
    <h3 class="archive-month-header">{{- .Key }}<sup class="archive-count">  {{ len .Pages }}</h3>
 | 
						|
    <div class="archive-posts">
 | 
						|
      {{- range .Pages  }}
 | 
						|
      {{- if eq .Kind "page" }}
 | 
						|
      <div class="archive-entry">
 | 
						|
        <h3 class="archive-entry-title">
 | 
						|
          {{- .Title | markdownify }}
 | 
						|
        </h3>
 | 
						|
        <div class="archive-meta">
 | 
						|
          <time>{{ .Date.Format "January 2, 2006" }}</time>
 | 
						|
          {{- if $.Site.Params.ShowReadingTime }} · 
 | 
						|
          {{- $default_txt := print .ReadingTime " " "min" }}
 | 
						|
          {{- i18n "read_time" .ReadingTime | default  $default_txt  }}{{ end }}
 | 
						|
          {{- if or .Params.author .Site.Params.author }} · {{- .Params.author | default .Site.Params.author }}{{ end }}
 | 
						|
        </div>
 | 
						|
        <a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
 | 
						|
      </div>
 | 
						|
      {{- end }}
 | 
						|
      {{- end }}
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
  {{- end }}
 | 
						|
</div>
 | 
						|
{{- end }}
 | 
						|
{{- end }}
 | 
						|
 | 
						|
{{- end  }}{{/* end main */}} |