github.com/e154/smart-home@v0.17.2-0.20240311175135-e530a6e5cd45/doc/themes/docsy/layouts/docs/list.html (about)

     1  {{ define "main" }}
     2  <div class="td-content">
     3  	<h1>{{ .Title }}</h1>
     4    {{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
     5  	<header class="article-meta">
     6  		{{ $context := . }}
     7  		{{ if .Site.Params.Taxonomy.taxonomyPageHeader }}
     8  			{{ range $index, $taxo := .Site.Params.Taxonomy.taxonomyPageHeader }}
     9  				{{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }}
    10  			{{ end }}
    11  		{{ else }}
    12  			{{ range $taxo, $taxo_map := .Site.Taxonomies }}
    13  				{{ partial "taxonomy_terms_article.html" (dict "context" $context "taxo" $taxo ) }}
    14  			{{ end }}
    15  		{{ end }}
    16  		{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) }}
    17  			{{ partial "reading-time.html" . }}
    18  		{{ end }}
    19  	</header>
    20  	{{ .Content }}
    21          {{ partial "section-index.html" . }}
    22  	{{ if (and (not .Params.hide_feedback) (.Site.Params.ui.feedback.enable) (.Site.GoogleAnalytics)) }}
    23  		{{ partial "feedback.html" .Site.Params.ui.feedback }}
    24  		<br />
    25  	{{ end }}
    26  	{{ if (.Site.DisqusShortname) }}
    27  		<br />
    28  		{{ partial "disqus-comment.html" . }}
    29  	{{ end }}
    30  	{{ partial "page-meta-lastmod.html" . }}
    31  </div>
    32  {{ end }}