mirror of
				https://github.com/adityatelange/hugo-PaperMod.git
				synced 2025-11-04 10:22:44 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{{ partial "header.html" . }}
 | 
						|
 | 
						|
{{ if not .IsHome }}
 | 
						|
<header class="page-header">
 | 
						|
  {{ if eq .Data.Singular "tag" }}
 | 
						|
  <div class="tagged">Tagged in</div>
 | 
						|
  <h1>{{ .Data.Term }}</h1>
 | 
						|
  {{ else }}
 | 
						|
  <h1>Posts</h1>
 | 
						|
  {{ end }}
 | 
						|
</header>
 | 
						|
{{ end }}
 | 
						|
 | 
						|
{{ $paginator := .Paginate (where .Pages ".Params.type" "!=" "page") }}
 | 
						|
 | 
						|
{{ if gt $paginator.TotalPages 0 }}
 | 
						|
{{ range $index, $page := $paginator.Pages }}
 | 
						|
<article class="{{ if and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0) }}first-entry{{ else }}post-entry{{ end }}">
 | 
						|
  <header class="entry-header">
 | 
						|
    <h2>{{ .Title }}</h2>
 | 
						|
  </header>
 | 
						|
  <section class="entry-content">
 | 
						|
   <p>{{ .Summary | plainify | htmlUnescape }}...</p>
 | 
						|
  </section>
 | 
						|
  <footer class="entry-footer">
 | 
						|
    <time >{{ .Date.Format "2006.1.2" }}</time>
 | 
						|
  </footer>
 | 
						|
  <a class="entry-link" href="{{ .Permalink }}"></a>
 | 
						|
</article>
 | 
						|
{{ end }}
 | 
						|
{{ end }}
 | 
						|
 | 
						|
{{ if gt $paginator.TotalPages 1 }}
 | 
						|
<footer class="page-footer">
 | 
						|
  <nav class="pagination">
 | 
						|
    {{ if $paginator.HasPrev }}
 | 
						|
    <a class="prev" href="{{ $paginator.Prev.URL }}">← {{ i18n "prev_page" }}</a>
 | 
						|
    {{ end }}
 | 
						|
    {{ if $paginator.HasNext }}
 | 
						|
    <a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} →</a>
 | 
						|
    {{ end }}
 | 
						|
  </nav>
 | 
						|
</footer>
 | 
						|
{{ end }}
 | 
						|
 | 
						|
{{ partial "footer.html" . }}
 |