6
0
Fork 0
This repository has been archived on 2024-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
fediversity_website_archive/themes/nluug/layouts/list.json.json

35 lines
1.1 KiB
JSON

{
"version": "https://jsonfeed.org/version/1",
"title": "{{ .Site.Title }}",
"home_page_url": "{{ .Site.BaseURL }}",
"feed_url": "{{ absURL "feed.json" }}",
"description": "{{ .Site.Params.description }}",
"favicon": "{{ absURL "assets/favicon.ico" }}",
"expired": false,
"author": {
"name": "{{ .Site.Params.author }}",
"url": "{{ .Site.BaseURL }}"
},
"items": [
{{ $list := (where .Site.RegularPages "Type" "posts") }}
{{ $len := (len $list) }}
{{ range $index, $element := $list }}
{
"id": {{ sha1 .Title | jsonify }},
"title": {{ .Title | jsonify }},
"summary": {{ .Description | jsonify }},
"content_text": {{ .Content | plainify | jsonify }},
"content_html": {{ .Content | jsonify }},
"url": {{ .Permalink | jsonify }},
"date_published": "{{ .Date.Format `2016-02-09T14:22:00-07:00` | safeHTML }}",
"date_modified": "{{ .Date.Format `2016-02-09T14:22:00-07:00` | safeHTML }}",
"author": {
"name": "{{ .Site.Params.author }}",
"url": "{{ .Site.BaseURL }}"
}
}{{ if ne (add $index 1) $len }},{{ end }}
{{ end }}
]
}