2021-09-25 20:52:01 -05:00
|
|
|
{{ define "main" }}
|
2021-11-22 02:21:15 -06:00
|
|
|
<div class="post-title">
|
|
|
|
<h1>
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
|
|
|
|
</h1>
|
|
|
|
</div>
|
2021-09-27 14:16:52 -05:00
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ partial "post-metadata/full.html" . }}
|
2021-11-15 21:06:53 -06:00
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ with (.GetTerms "series") }}
|
|
|
|
{{ $series := slice }}
|
|
|
|
{{ range . }}
|
|
|
|
{{ $series = $series | append (printf `<a href="%s">%s</a>` .Permalink .LinkTitle) }}
|
|
|
|
{{ end }}
|
2021-11-15 21:06:53 -06:00
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
<div class="series-box">
|
|
|
|
{{ partial "icon.html" "info" }}
|
|
|
|
{{ if gt (len $series) 1 }}
|
|
|
|
This post is part of multiple series:
|
|
|
|
{{ else }}
|
|
|
|
This post is part of a series:
|
|
|
|
{{ end }}
|
2021-11-15 21:06:53 -06:00
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ delimit $series ", " }}
|
|
|
|
</div>
|
2021-11-15 21:06:53 -06:00
|
|
|
{{ end }}
|
|
|
|
|
2021-10-23 00:03:44 -05:00
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ if .Params.Toc }}
|
2021-11-23 19:06:26 -06:00
|
|
|
<div class="table-of-contents" aria-label="{{ i18n "aria_table_of_contents" }}">
|
2021-11-22 02:21:15 -06:00
|
|
|
<details>
|
|
|
|
<summary>{{ i18n "table_of_contents" }}</summary>
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
</details>
|
2021-11-14 00:41:49 -06:00
|
|
|
</div>
|
2021-11-22 02:21:15 -06:00
|
|
|
<div class="table-of-contents print">
|
|
|
|
{{ i18n "table_of_contents" }}
|
|
|
|
{{ .TableOfContents }}
|
2021-11-14 00:41:49 -06:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ with .Resources.GetMatch "feature" }}
|
|
|
|
<div class="post-media">
|
|
|
|
{{ partial "figure.html" (dict "src" . "border" true) }}
|
2021-11-14 00:41:49 -06:00
|
|
|
</div>
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ end }}
|
|
|
|
|
2022-04-04 21:47:26 -05:00
|
|
|
<div class="post-content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
2021-11-22 02:21:15 -06:00
|
|
|
|
|
|
|
{{ $related := .Site.RegularPages.Related . | first 5 }}
|
|
|
|
{{ with $related }}
|
|
|
|
<div class="see-also">
|
|
|
|
<h2>{{ i18n "see_also" }}</h2>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{{ range . }}
|
|
|
|
<li>
|
|
|
|
{{ with .Parent.Params.icon }}{{ partial "icon.html" . }}{{ end }}
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
2021-11-14 00:41:49 -06:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ if or .NextInSection .PrevInSection }}
|
|
|
|
<div class="prevnext">
|
|
|
|
{{ with .NextInSection }}
|
|
|
|
<a class="prev" href="{{ .Permalink }}">
|
|
|
|
<div class="prev-caption">
|
|
|
|
← {{ i18n "newer_post" }}
|
|
|
|
</div>
|
|
|
|
<div class="prev-post">
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{{ else }}
|
|
|
|
<div class="prev"></div>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .PrevInSection }}
|
|
|
|
<a class="next" href="{{ .Permalink }}">
|
|
|
|
<div class="next-caption">
|
|
|
|
{{ i18n "older_post" }} →
|
|
|
|
</div>
|
|
|
|
<div class="next-post">
|
|
|
|
{{ .Title | markdownify }}
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
{{ else }}
|
|
|
|
<div class="next"></div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2021-10-23 22:51:13 -05:00
|
|
|
|
2021-11-22 02:21:15 -06:00
|
|
|
{{ if .Params.comments }}
|
|
|
|
<div class="comments">
|
|
|
|
{{ partial "comments.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
2021-09-25 20:52:01 -05:00
|
|
|
{{ end }}
|