mirror of
				https://github.com/Wonderfall/hugo-WonderMod.git
				synced 2025-10-30 19:35:26 +01:00 
			
		
		
		
	fix tag page
This commit is contained in:
		| @@ -1,16 +1,25 @@ | |||||||
| {{ partial "header.html" . }} | {{- partial "header.html" . }} | ||||||
|  |  | ||||||
|  | {{- $scope := . }} | ||||||
| {{ if not .IsHome }} | {{- if .IsHome }} | ||||||
|  | {{- $scope = .Site }} | ||||||
|  | {{- else }} | ||||||
| <header class="page-header"> | <header class="page-header"> | ||||||
|   <h1>{{ if eq .Data.Singular "tag" }}{{ .Data.Term }}{{ else }}Posts{{ end }}</h1> |   <h1>{{ if .Data.Term }}{{ .Data.Term }}{{ else }}Tags{{ end }}</h1> | ||||||
| </header> | </header> | ||||||
| {{ end }} | {{- end }} | ||||||
|  |  | ||||||
| {{ $paginator := .Paginate (where .Site.RegularPages ".Params.type" "!=" "page") }} | {{- $paginator := .Paginate (where $scope.RegularPages ".Params.type" "!=" "page") }} | ||||||
|  |  | ||||||
| {{ range $index, $page := $paginator.Pages }} | {{- range $index, $page := $paginator.Pages }} | ||||||
| <article class="{{ if and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0) }}first-entry{{ else }}post-entry{{ end }}"> |  | ||||||
|  | {{- $entryClass := "post-entry" }} | ||||||
|  | {{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0)) }} | ||||||
|  | {{- $entryClass = "first-entry" }} | ||||||
|  | {{- else if .Data.Term }} | ||||||
|  | {{- $entryClass = "post-entry tag-entry" }} | ||||||
|  | {{- end }} | ||||||
|  | <article class="{{ $entryClass }}"> | ||||||
|   <header class="entry-header"> |   <header class="entry-header"> | ||||||
|     <h2>{{ .Title }}</h2> |     <h2>{{ .Title }}</h2> | ||||||
|   </header> |   </header> | ||||||
| @@ -22,19 +31,19 @@ | |||||||
|   </footer> |   </footer> | ||||||
|   <a class="entry-link" href="{{ .Permalink }}"></a> |   <a class="entry-link" href="{{ .Permalink }}"></a> | ||||||
| </article> | </article> | ||||||
| {{ end }} | {{- end }} | ||||||
|  |  | ||||||
| {{ if gt $paginator.TotalPages 1 }} | {{- if gt $paginator.TotalPages 1 }} | ||||||
| <footer class="page-footer"> | <footer class="page-footer"> | ||||||
|   <nav class="pagination"> |   <nav class="pagination"> | ||||||
|     {{ if $paginator.HasPrev }} |     {{- if $paginator.HasPrev }} | ||||||
|     <a class="prev" href="{{ $paginator.Prev.URL }}">← {{ i18n "prev_page" }}</a> |     <a class="prev" href="{{ $paginator.Prev.URL }}">← {{ i18n "prev_page" }}</a> | ||||||
|     {{ end }} |     {{- end }} | ||||||
|     {{ if $paginator.HasNext }} |     {{- if $paginator.HasNext }} | ||||||
|     <a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} →</a> |     <a class="next" href="{{ $paginator.Next.URL }}">{{ i18n "next_page" }} →</a> | ||||||
|     {{ end }} |     {{- end }} | ||||||
|   </nav> |   </nav> | ||||||
| </footer> | </footer> | ||||||
| {{ end }} | {{- end }} | ||||||
|  |  | ||||||
| {{ partial "footer.html" . }} | {{- partial "footer.html" . }} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 nanxiaobei
					nanxiaobei