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

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