2021-11-01 03:45:54 +00:00
|
|
|
{{- define "headExtra" -}}
|
|
|
|
<meta name="description" content="{{ .Summary }}" />
|
2021-11-01 04:17:12 +00:00
|
|
|
<meta property="og:title" content="{{ .Site.Title }}: {{ .Title }}" />
|
2021-11-01 04:13:00 +00:00
|
|
|
<meta property="og:url" content="{{ .Permalink }}" />
|
2021-11-01 04:08:54 +00:00
|
|
|
<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" }}" />
|
2021-11-01 03:45:54 +00:00
|
|
|
{{- end -}}
|
|
|
|
|
2020-11-03 22:14:45 +00:00
|
|
|
{{- define "content" -}}
|
|
|
|
|
2022-02-02 10:26:08 +00:00
|
|
|
<h1 class="post-title">{{ .Title }}</h1>
|
2020-11-03 22:14:45 +00:00
|
|
|
|
2022-02-08 22:29:18 +00:00
|
|
|
<span class="tags">
|
|
|
|
{{ range .Params.tags }}
|
|
|
|
<a href="/tags/{{ . }}" class="tag">
|
|
|
|
<span class="text">{{ . }}</span>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
|
2020-11-03 22:14:45 +00:00
|
|
|
<small style="display: block; margin-bottom: 20px;">
|
|
|
|
Posted
|
2021-11-01 03:36:32 +00:00
|
|
|
on {{ .Date.Format "Mon Jan 02, 2006" }}
|
2020-11-03 22:14:45 +00:00
|
|
|
- {{ .ReadingTime }} min read
|
|
|
|
</small>
|
|
|
|
|
2022-02-02 09:16:56 +00:00
|
|
|
<div class="post-container">
|
|
|
|
{{ if .Params.toc }}
|
|
|
|
<div class="toc-drawer">
|
|
|
|
<details>
|
|
|
|
<summary>Table of Contents</summary>
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
</details>
|
|
|
|
</div>
|
2022-07-19 08:49:38 +00:00
|
|
|
<!-- <div class="toc-list"> {{ .TableOfContents }} </div> -->
|
2022-02-02 09:16:56 +00:00
|
|
|
{{ end }}
|
|
|
|
<div id="content" class="post-content">{{ .Content }}</div>
|
2021-07-06 05:52:05 +00:00
|
|
|
</div>
|
2020-11-03 22:14:45 +00:00
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
|
|
|
<small>
|
2021-08-30 07:52:21 +00:00
|
|
|
Thanks for reading!
|
2022-02-02 09:16:56 +00:00
|
|
|
|
|
|
|
Have comments? Discuss this post by sending me a
|
2022-02-09 04:24:38 +00:00
|
|
|
<a href="mailto:~mzhang/public-inbox@lists.sr.ht?subject=Re: {{ .Title }}">public email</a>.
|
2020-11-03 22:14:45 +00:00
|
|
|
</small>
|
|
|
|
|
|
|
|
{{- end -}}
|