podcast-mod/layouts/partials/external_or_local.rss.xml

15 lines
526 B
XML
Raw Normal View History

2024-10-21 06:50:06 +00:00
{{- $ctx := collections.Index . "context" -}}
{{- $ref_page := collections.Index . "ref_page" -}}
{{- $url := "" -}}
{{- with collections.Index $ctx "external_url" -}}
{{- $url = . -}}
{{- else -}}
{{- $resource_file := collections.Index $ctx "resource_file" -}}
{{- with $ref_page.Resources.Get $resource_file -}}
{{- $url = .Permalink -}}
{{- else -}}
{{- errorf "failed to load resource file %q for page %q" $resource_file $ref_page.Title -}}
{{- end -}}
{{- end -}}
{{- return $url -}}