| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {{- $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 -}}
- ]
- }
|