mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-31 19:55:24 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {{- define "main" }}
 | |
| 
 | |
| {{- if (and .Site.Params.profileMode.enabled .IsHome) }}
 | |
| {{- partial "index_profile.html" . }}
 | |
| {{- else }} {{/* if not profileMode */}}
 | |
| 
 | |
| {{- if not .IsHome | and .Title }}
 | |
| <header class="page-header">
 | |
|   <h1>{{ .Title }}</h1>
 | |
| </header>
 | |
| {{- end }}
 | |
| 
 | |
| {{- $pages := union .RegularPages .Sections }}
 | |
| 
 | |
| {{- if .IsHome }}
 | |
| {{- $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
 | |
| {{- end}}
 | |
| 
 | |
| {{ $paginator := .Paginate $pages }}
 | |
| {{ $term := .Data.Term}}
 | |
| {{- range $index, $page := $paginator.Pages }}
 | |
| 
 | |
| {{- $class := "post-entry" }}
 | |
| {{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0)) }}
 | |
| {{- if .Site.Params.homeInfoParams | or .Site.Params.disableSpecial1stPost}}
 | |
| {{- partial "home_info.html" . }}
 | |
| {{- else}}
 | |
| {{- $class = "first-entry" }}
 | |
| {{- end }}
 | |
| {{- else if $term }}
 | |
| {{- $class = "post-entry tag-entry" }}
 | |
| {{- end }}
 | |
| <article class="{{ $class }}">
 | |
|   {{- $isHidden := (.Site.Params.cover.hidden | default .Site.Params.cover.hiddenInList)}}
 | |
|   {{- partial "cover.html" (dict "cxt" . "IsHome" true "isHidden" $isHidden) }}
 | |
|   <header class="entry-header">
 | |
|     <h2>
 | |
|       {{ .Title }}
 | |
|       {{- if .Draft }}<div class="entry-isdraft"><sup>  [draft]</sup></div>{{- end }}
 | |
|     </h2>
 | |
|   </header>
 | |
|   {{- if (ne .Site.Params.hideSummary true)}}
 | |
|   <section class="entry-content">
 | |
|     <p>{{ .Summary | plainify | htmlUnescape }}...</p>
 | |
|   </section>
 | |
|   {{- end }}
 | |
|   {{- if not (.Param "hideMeta") }}
 | |
|   <footer class="entry-footer">
 | |
|     {{- partial "post_meta.html" . -}}
 | |
|   </footer>
 | |
|   {{- end }}
 | |
|   <a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
 | |
| </article>
 | |
| {{- end }}
 | |
| 
 | |
| {{- if gt $paginator.TotalPages 1 }}
 | |
| <footer class="page-footer">
 | |
|   <nav class="pagination">
 | |
|     {{- if $paginator.HasPrev }}
 | |
|     <a class="prev" href="{{ $paginator.Prev.URL | absURL }}">« {{ i18n "prev_page" }}</a>
 | |
|     {{- end }}
 | |
|     {{- if $paginator.HasNext }}
 | |
|     <a class="next" href="{{ $paginator.Next.URL | absURL }}">{{ i18n "next_page" }} »</a>
 | |
|     {{- end }}
 | |
|   </nav>
 | |
| </footer>
 | |
| {{- end }}
 | |
| {{end}}{{/* end profileMode */}}
 | |
| {{- end  }}{{- /* end main */ -}}
 | 
