Revert "home-info: handle case where home-info was hidden"

This reverts commit ce408f6afc.

* incomplete
This commit is contained in:
Aditya Telange 2020-09-19 17:29:05 +05:30
parent 7204003afd
commit 082d960e13
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77

View File

@ -10,14 +10,11 @@
</header>
{{ end }}
{{ $pages := .RegularPages }}
{{ if .IsHome }}
{{ $pages = where site.RegularPages "Type" "in" site.Params.mainSections }}
{{- if .Site.Params.homeInfoParams }}
{{- partial "homeInfo.html" . }}
{{- end }}
{{end}}
{{ $paginator := .Paginate $pages }}
@ -26,9 +23,11 @@
{{- $class := "post-entry" }}
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0)) }}
{{- if not .Site.Params.homeInfoParams | or .Site.Params.disableSpecial1stPost}}
{{- if .Site.Params.homeInfoParams | or .Site.Params.disableSpecial1stPost}}
{{- partial "homeInfo.html" . }}
{{else}}
{{- $class = "first-entry" }}
{{- end }}
{{ end }}
{{- else if .Data.Term }}
{{- $class = "post-entry tag-entry" }}
{{- end }}