You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.8 KiB
HTML
56 lines
1.8 KiB
HTML
{{ partial "head.html" . }}
|
|
<body>
|
|
{{ partial "nav.html" . }}
|
|
|
|
<section id="wrapper" class="post">
|
|
<article>
|
|
<header>
|
|
<h1>
|
|
{{ .Title }}
|
|
</h1>
|
|
<h2 class="headline">
|
|
{{ .Date.Format "Jan 2, 2006 15:04" }}
|
|
· {{ if lt 1 .WordCount }}{{ .WordCount }} words{{ else }}{{ .WordCount }} word{{ end }}
|
|
· {{ .ReadingTime }} minute read
|
|
<span class="tags">
|
|
{{ with .Params.tags }}
|
|
{{ if ge (len .) 1 }}
|
|
{{ range . }}
|
|
<a href="{{ $.Site.BaseURL }}tags/{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end}}
|
|
</span>
|
|
</h2>
|
|
</header>
|
|
{{ if .Site.Params.enableToc }}
|
|
{{ if .TableOfContents }}
|
|
<div id="toc">
|
|
{{ .TableOfContents }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
<section id="post-body">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
|
|
{{ if .Site.Params.enableShare }}
|
|
{{ partial "share.html" . }}
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.enableDisqus }}
|
|
{{ partial "disqus.html" . }}
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.showLatestPosts }}
|
|
{{ partial "latest-posts.html" . }}
|
|
{{ end }}
|
|
|
|
{{ partial "footer.html" . }}
|
|
</section>
|
|
|
|
{{ partial "js.html" . }}
|
|
</body>
|
|
</html>
|