{{ .Title }}
{{ with .Description }}{{ . }}
{{ end }}{{/* API Documentation Default Layout Fallback layout for API documentation pages. Delegates to appropriate templates based on page type: - Section pages: Use section.html logic (children listing) - Pages with staticFilePath: Use Hugo-native renderer Note: This template exists as a catch-all but specific templates (api/section.html, api/list.html, api/single.html) should be preferred. */}} {{/* Extract product and version from URL path for download buttons */}} {{/* Example: /influxdb3/clustered/api/ → ["", "influxdb3", "clustered", "api", ""] */}} {{ $pathParts := split .RelPermalink "/" }} {{ $version := "" }} {{ if ge (len $pathParts) 3 }} {{ $version = index $pathParts 2 }} {{ end }} {{/* Section pages without staticFilePath render content directly */}} {{ if and .IsSection (not .Params.staticFilePath) }} {{ partial "header.html" . }} {{ partial "topnav.html" . }}
{{ . }}
{{ end }}{{ . }}
{{ end }}