{{ define "main" }}
|
|
<article class="post">
|
|
<header>
|
|
<h1>{{ .Title }}</h1>
|
|
<h2 class="subtitle">{{ .Description | markdownify }}</h2>
|
|
<h2 class="headline">
|
|
{{ .Date.Format "January 2, 2006" }}
|
|
<br>
|
|
{{ with .Params.tags }}
|
|
{{ if ge (len .) 1 }}
|
|
{{ range . }}
|
|
<a href="{{ printf "tags/%s" (. | urlize) | absURL }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end}}
|
|
</h2>
|
|
</header>
|
|
<section id="post-body">
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
|
|
<footer id="post-meta" class="clearfix">
|
|
<img class="avatar" src="{{ "images/avatar.png" | absURL }}">
|
|
<div>
|
|
<span class="dark">{{ .Site.Params.name }}</span>
|
|
<span>{{ .Site.Params.aboutAuthor | markdownify}}</span>
|
|
</div>
|
|
<section id="sharing">
|
|
{{ partial "share.html" . }}
|
|
</section>
|
|
</footer>
|
|
|
|
{{ template "_internal/disqus.html" . }}
|
|
|
|
{{ partial "latest-posts.html" . }}
|
|
{{ end }}
|