mirror of https://github.com/rancher/docs.git
14 lines
374 B
JSON
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 }}
|
|
]
|
|
}
|