{{/* Minimal list of API endpoints for the current page. */}} {{ $raw := .Scratch.Get "api_endpoints" }} {{/* Normalize to a slice */}} {{ $endpoints := slice }} {{ if reflect.IsSlice $raw }} {{ $endpoints = $raw }} {{ else if reflect.IsMap $raw }} {{ range $raw }} {{ $endpoints = append $endpoints . }} {{ end }} {{ end }} {{ if gt (len $endpoints) 0 }}
List of Endpoints
{{ end }}