selfprivacy.org/_vendor/github.com/google/docsy/layouts/docs/list.html

21 lines
642 B
HTML
Raw Normal View History

2024-04-21 23:04:16 +00:00
{{ define "main" }}
<div class="td-content">
<h1>{{ .Title }}</h1>
{{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
<header class="article-meta">
2024-04-25 22:15:39 +00:00
{{ partial "taxonomy_terms_article_wrapper.html" . -}}
{{ if (and (not .Params.hide_readingtime) (.Site.Params.ui.readingtime.enable)) -}}
{{ partial "reading-time.html" . -}}
{{ end -}}
2024-04-21 23:04:16 +00:00
</header>
{{ .Content }}
2024-04-25 22:15:39 +00:00
{{ partial "section-index.html" . -}}
{{ partial "feedback.html" . -}}
{{ if (.Site.DisqusShortname) -}}
2024-04-21 23:04:16 +00:00
<br />
2024-04-25 22:15:39 +00:00
{{- partial "disqus-comment.html" . -}}
{{ end -}}
{{ partial "page-meta-lastmod.html" . -}}
2024-04-21 23:04:16 +00:00
</div>
2024-04-25 22:15:39 +00:00
{{ end -}}