selfprivacy.org/_vendor/github.com/google/docsy/layouts/blog/content.html

24 lines
843 B
HTML
Raw Normal View History

2024-04-21 23:04:16 +00:00
<div class="td-content">
<h1>{{ .Title }}</h1>
{{ with .Params.description }}<div class="lead">{{ . | markdownify }}</div>{{ end }}
<div class="td-byline mb-4">
{{ with .Params.author }}{{ T "post_byline_by" }} <b>{{ . | markdownify }}</b> |{{ end}}
<time datetime="{{ $.Date.Format "2006-01-02" }}" class="text-muted">{{ $.Date.Format $.Site.Params.time_format_blog }}</time>
</div>
<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
{{ if (.Site.Params.DisqusShortname) -}}
2024-04-21 23:04:16 +00:00
<br />
2024-04-25 22:15:39 +00:00
{{- partial "disqus-comment.html" . -}}
2024-04-21 23:04:16 +00:00
<br />
2024-04-25 22:15:39 +00:00
{{ end -}}
2024-04-21 23:04:16 +00:00
{{ partial "pager.html" . }}
2024-04-25 22:15:39 +00:00
{{ partial "page-meta-lastmod.html" . -}}
2024-04-21 23:04:16 +00:00
</div>