Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.json « layouts - github.com/uPagge/uBlogger.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc052dcad65f9abb83c17111a5a0d7870db5f706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{- $index := slice -}}
{{- range where .Site.RegularPages ".Params.hiddenfromsearch" "!=" true -}}
    {{- $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.dateFormatToUse | default "2006-01-02") -}}
    {{- $one = dict "date" $publish_date | merge $one -}}
    {{- $content := partial "function/content.html" .Content | 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 -}}