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>
|
|
|
|
<h1 class="title">{{ .Title }}</h1>
|
|
|
|
<h2 class="date">{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</h2>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
{{ partial "posts/disqus" . }}
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{{ partial "posts/math" . }}
|
|
|
|
</section>
|
2018-03-01 01:38:59 +00:00
|
|
|
{{ end }}
|