blog/layouts/posts/single.html

45 lines
1.2 KiB
HTML

{{- define "headExtra" -}}
<meta name="description" content="{{ .Summary }}" />
<meta property="og:title" content="{{ .Site.Title }}: {{ .Title }}" />
<meta property="og:url" content="{{ .Permalink }}" />
<meta property="og:description" content="{{ .Summary }}" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}" />
{{- end -}}
{{- define "content" -}}
<h1 class="post-title">{{ .Title }}</h1>
<small style="display: block; margin-bottom: 20px;">
Posted
on {{ .Date.Format "Mon Jan 02, 2006" }}
- {{ .ReadingTime }} min read
</small>
<div class="post-container">
{{ if .Params.toc }}
<div class="toc-drawer">
<details>
<summary>Table of Contents</summary>
{{ .TableOfContents }}
</details>
</div>
<div class="toc-list">
{{ .TableOfContents }}
</div>
{{ end }}
<div id="content" class="post-content">{{ .Content }}</div>
</div>
<hr />
<small>
Thanks for reading!
Have comments? Discuss this post by sending me a
<a href="mailto:~mzhang/public-inbox@lists.sr.ht?subject=Re:+{{ .Title }}">public email</a>.
</small>
{{- end -}}