1
0
mirror of https://github.com/rancher/docs.git synced 2026-02-06 03:45:54 +01:00
Files
docs/layouts/_default/feed.json
2018-04-12 13:59:16 -07:00

14 lines
374 B
JSON

{
"events": [
{{ range $i, $event := (where (where .Site.RegularPages "Section" "events") ".Params.type" "event") }}
{{ if $i }}, {{ end }}
{
"title": "{{ $event.Params.title }}",
"location": "{{$event.Params.location}}",
"eventDate": "{{$event.Params.eventdate}}",
"permalink": "{{.Permalink}}"
}
{{ end }}
]
}