2018-03-01 01:38:59 +00:00
|
|
|
{{ define "title" }}
|
|
|
|
{{ .Title }} · {{ .Site.Title }}
|
|
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
2018-10-03 18:06:20 +00:00
|
|
|
<section class="container post">
|
|
|
|
<article>
|
|
|
|
<header>
|
2018-10-15 01:24:13 +00:00
|
|
|
<div class="post-title">
|
|
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
|
|
</div>
|
|
|
|
<div class="post-meta">
|
2018-10-27 12:43:26 +00:00
|
|
|
<div class="date">
|
|
|
|
<span class="posted-on">
|
|
|
|
<i class="fas fa-calendar"></i>
|
|
|
|
<time datetime='{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}'>
|
|
|
|
{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}
|
|
|
|
</time>
|
|
|
|
</span>
|
|
|
|
<span class="reading-time">
|
|
|
|
<i class="fas fa-clock"></i>
|
2019-02-09 14:36:32 +00:00
|
|
|
{{ i18n "reading_time" .ReadingTime }}
|
2018-10-27 12:43:26 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
2019-06-14 16:27:38 +00:00
|
|
|
{{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
|
|
|
|
{{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
|
2018-10-15 01:24:13 +00:00
|
|
|
</div>
|
2018-10-03 18:06:20 +00:00
|
|
|
</header>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
2019-06-14 16:27:38 +00:00
|
|
|
{{ partial "posts/series.html" . }}
|
|
|
|
{{ partial "posts/disqus.html" . }}
|
2019-06-29 12:46:18 +00:00
|
|
|
{{ partial "posts/commento.html" . }}
|
2019-08-21 13:03:15 +00:00
|
|
|
{{ partial "posts/utteranc.html" . }}
|
2018-10-03 18:06:20 +00:00
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
|
2019-06-14 16:27:38 +00:00
|
|
|
{{ partial "posts/math.html" . }}
|
2018-10-03 18:06:20 +00:00
|
|
|
</section>
|
2018-03-01 01:38:59 +00:00
|
|
|
{{ end }}
|