Files
weatherapi/templates/weatherstories_latest.txt.tmpl
Eric Rakestraw ecea856e8e
All checks were successful
ci/woodpecker/push/build-image Pipeline was successful
Implemented weather stories support
2026-05-30 07:06:29 -05:00

22 lines
566 B
Cheetah

{{- if .Data -}}
Latest Weather Story
Office ID: {{if .Data.OfficeID}}{{.Data.OfficeID}}{{else}}n/a{{end}}
Title: {{if .Data.Title}}{{.Data.Title}}{{else}}Untitled{{end}}
Start: {{.Data.StartTime}}
End: {{.Data.EndTime}}
Updated: {{.Data.UpdatedAt}}
Priority: {{.Data.Priority}}
Order: {{.Data.Order}}
{{- if .Data.Description}}
Description: {{.Data.Description}}
{{- end}}
{{- if .Data.AltText}}
Alt Text: {{.Data.AltText}}
{{- end}}
{{- if .Data.DownloadURL}}
Download URL: {{.Data.DownloadURL}}
{{- end}}
{{- else -}}
No weather stories data available.
{{- end}}