themes/docsy/layouts/swagger/list.html (32 lines of code) (raw):

{{ define "main" }} <div class="td-content"> <h1>{{ .Title }}</h1> {{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }} <header class="article-meta"> {{ $context := . }} {{ if .Site.Params.Taxonomy.taxonomyPageHeader }} {{ range $index, $taxo := .Site.Params.Taxonomy.taxonomyPageHeader }} {{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }} {{ end }} {{ else }} {{ range $taxo, $taxo_map := .Site.Taxonomies }} {{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }} {{ end }} {{ end }} {{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }} {{ partial "reading-time.html" . }} {{ end }} </header> {{ .Content }} {{ partial "section-index.html" . }} {{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }} {{ partial "feedback.html" .Site.Params.ui.feedback }} <br /> {{ end }} {{ if (.Site.DisqusShortname) }} <br /> {{ partial "disqus-comment.html" . }} {{ end }} {{ partial "page-meta-lastmod.html" . }} </div> {{ end }}