2015-02-02 09:54:20 +00:00
|
|
|
{{ partial "header.html" . }}
|
2015-06-16 04:21:03 +00:00
|
|
|
{{ $baseurl := .Site.BaseURL }}
|
2015-02-02 09:54:20 +00:00
|
|
|
<article>
|
|
|
|
<header>
|
2015-02-04 17:33:31 +00:00
|
|
|
<h1 class="text-primary">{{ .Title }}</h1>
|
2015-02-02 09:54:20 +00:00
|
|
|
<div class="post-meta clearfix">
|
|
|
|
<div class="post-date pull-left">
|
|
|
|
Posted on
|
2015-06-16 04:21:03 +00:00
|
|
|
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">
|
2015-02-02 09:54:20 +00:00
|
|
|
{{ .Date.Format "Jan 2, 2006" }}
|
|
|
|
</time>
|
|
|
|
</div>
|
|
|
|
<div class="pull-right">
|
|
|
|
{{ range .Params.tags }}
|
2015-02-03 14:54:30 +00:00
|
|
|
<span class="post-tag small"><a href="{{ $baseurl }}/tags/{{ . | urlize }}">#{{ . }}</a></span>
|
2015-02-02 09:54:20 +00:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<section>
|
|
|
|
{{ .Content }}
|
|
|
|
</section>
|
|
|
|
<footer>
|
2015-07-17 15:25:27 +00:00
|
|
|
{{ with .Site.Params.disqus }}
|
|
|
|
<hr/>
|
|
|
|
<div id="disqus_thread"></div>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var disqus_shortname = '{{ . }}';
|
|
|
|
(function() {
|
|
|
|
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
|
|
|
dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';
|
|
|
|
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
|
|
|
{{ end }}
|
2015-02-02 09:54:20 +00:00
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|