2023-08-28 18:48:46 +00:00
{{- $postDate := .Date.Format "2006-01-02" }}
{{- $updateDate := .Lastmod.Format "2006-01-02" }}
{{ if or (.Params.description) (.Params.date) }}
2023-08-23 22:02:19 +00:00
{{ if .Params.description }}< p > {{ .Params.description }}< / p > {{ end }}
2023-08-22 00:54:33 +00:00
< p >
2023-08-29 14:51:34 +00:00
{{ with $postDate }}< i class = "fa-regular fa-note-sticky" > < / i > {{ . }}{{ end }}{{- if ne $postDate $updateDate }}< br > < i class = "fa-regular fa-pen-to-square" > < / i > {{ $updateDate }}{{ end }}
2023-08-22 00:54:33 +00:00
< / p >
2023-08-23 00:39:37 +00:00
< p >
{{- with .Params.tags -}}
{{- range . }}
{{- $tag := urlize . -}}
[< a href = '{{ absLangURL (printf "tags/%s" $tag) }}' title = "{{ . }}" > {{ . }}< / a > ]
{{- end }}
{{- end }}
< / p >
2023-08-23 21:58:49 +00:00
< hr >
2023-08-22 00:54:33 +00:00
{{ end }}
{{ if and (gt .WordCount 400 ) (gt (len .TableOfContents) 180) }}
< h2 > On this page< / h2 >
{{ .TableOfContents }}
2023-08-23 00:39:37 +00:00
< hr >
2023-08-22 00:54:33 +00:00
{{ end }}
{{- $posts := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }}
{{- $featured := default 8 .Site.Params.numberOfFeaturedPosts }}
{{- $featuredPosts := first $featured (where $posts "Params.featured" true)}}
{{- with $featuredPosts }}
< h2 > Featured Posts< / h2 >
< ul >
{{- range . }}
< li >
< a href = "{{ .Permalink }}" title = "{{ .Title }}" > {{ .Title | markdownify }}< / a >
< / li >
{{- end }}
< / ul >
{{- end }}