mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-13 02:16:19 +01:00
f14301c395
* feat: improve configuration * fix: fix partials/footer.html error
22 lines
1.2 KiB
JSON
22 lines
1.2 KiB
JSON
{{- $index := slice -}}
|
|
{{- $pages := .Site.RegularPages -}}
|
|
{{- if .Site.Params.page.hiddenFromSearch -}}
|
|
{{- $pages = where $pages "Params.hiddenfromsearch" false -}}
|
|
{{- else -}}
|
|
{{- $pages = where $pages "Params.hiddenfromsearch" "!=" true -}}
|
|
{{- end -}}
|
|
{{- range $pages -}}
|
|
{{- $params := .Params | merge $.Site.Params.page -}}
|
|
{{- $one := dict "uri" .RelPermalink "title" .Title "description" (.Description | default "") -}}
|
|
{{- $tags := $params.tags | default slice -}}
|
|
{{- $one = delimit $tags "\n" | dict "tags" | merge $one -}}
|
|
{{- $publish_date := .PublishDate.Format (.Site.Params.dateFormat | default "2006-01-02") -}}
|
|
{{- $one = dict "date" $publish_date | merge $one -}}
|
|
{{- $content := dict "content" .Content "ruby" $params.ruby "fraction" $params.fraction "fontawesome" $params.fontawesome | partial "function/content.html" | plainify -}}
|
|
{{- if gt .Site.Params.search.contentLength 0 -}}
|
|
{{- $content = substr $content 0 .Site.Params.search.contentLength -}}
|
|
{{- end -}}
|
|
{{- $one = dict "content" $content | merge $one -}}
|
|
{{- $index = $index | append $one -}}
|
|
{{- end -}}
|
|
{{- $index | jsonify | safeJS -}}
|