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

github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/list.json.json')
-rw-r--r--layouts/_default/list.json.json47
1 files changed, 0 insertions, 47 deletions
diff --git a/layouts/_default/list.json.json b/layouts/_default/list.json.json
deleted file mode 100644
index e477612..0000000
--- a/layouts/_default/list.json.json
+++ /dev/null
@@ -1,47 +0,0 @@
-{{- $pctx := . -}}
-{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
-{{- $pages := $pctx.RegularPages -}}
-{{- $limit := .Site.Config.Services.RSS.Limit -}}
-{{- if ge $limit 1 -}}
-{{- $pages = $pages | first $limit -}}
-{{- end -}}
-{{ $length := (len $pages) -}}
-{
- "version" : "https://jsonfeed.org/version/1",
- "title" : "{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{ . }} {{ i18n "string_on" }} {{ end }}{{ .Site.Title }}{{ end }}",
- "description": "{{ i18n "string_recent_content" }} {{ if ne .Title .Site.Title }}{{ with .Title }}{{ i18n "string_in" }} {{ . }} {{ end }}{{ end }}{{ i18n "string_on" }} {{ .Site.Title }}",
- "home_page_url" : "{{ .Site.BaseURL }}",
- {{ with .OutputFormats.Get "JSON" -}}
- "feed_url" : "{{ .Permalink }}",
- {{ end -}}
- {{ with $.Param "icon" -}}
- "icon" : "{{ . | absURL }}",
- {{ end -}}
- {{ with $.Param "favicon" -}}
- "favicon" : "{{ . | absURL }}",
- {{ end -}}
- {{ with .Site.Author.name -}}
- "author" : {
- "name" : "{{ . }}"{{ with $.Site.Author.url }},
- "url": "{{ . }}"{{ end }}{{ with $.Site.Author.avatar }},
- "avatar": "{{ . | absURL }}"{{ end }}
- },
- {{ end -}}
- "items" : [
- {{ range $index, $element := $pages -}}
- {
- "title" : {{ .Title | jsonify }},
- "date_published" : "{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}",
- "date_modified" : "{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}",
- "id" : "{{ .Permalink }}",
- "url" : "{{ .Permalink }}",
- {{ with .Params.author -}}
- "author" : {
- "name" : "{{ . }}"
- },
- {{ end -}}
- "content_html" : {{ .Content | jsonify }}
- }{{ if ne (add $index 1) $length }},{{ end }}
- {{ end -}}
- ]
-}