mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2025-06-05 01:03:46 -04:00
Add option to use 1st entry as some Information
Currenty supports 2 vals Title and Content
Great for short intro for bloggers
can be enabled by using `Params.homeInfoParams`
homeInfoParams:
enabled: true
Title: Hi there 👋
Content: This is Content !! Can be Info, links, social-icons...
This commit is contained in:
parent
fe986eb333
commit
8356e48e47
2 changed files with 15 additions and 1 deletions
|
@ -8,10 +8,14 @@
|
|||
{{ end }}
|
||||
{{ $paginator := .Paginate (where $PageContext.RegularPages "Type" $contentTypeName) }}
|
||||
|
||||
{{- if (and $.IsHome (eq $.Site.Params.homeInfoParams.enabled true)) }}
|
||||
{{- partial "homeInfo.html" . }}
|
||||
{{ end }}
|
||||
|
||||
{{- range $index, $page := $paginator.Pages }}
|
||||
|
||||
{{- $class := "post-entry" }}
|
||||
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0)) }}
|
||||
{{- if (and $.IsHome (eq $paginator.PageNumber 1) (eq $index 0) (ne $.Site.Params.homeInfoParams.enabled true)) }}
|
||||
{{- $class = "first-entry" }}
|
||||
{{- else if .Data.Term }}
|
||||
{{- $class = "post-entry tag-entry" }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue