Jakub Filo
1d2d793065
-modified font awesome links section of header -cleaned up footer -changed name to planblog to better fit my use -added adsense support
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
{{ partial "header.html" . }}
|
|
{{ $baseurl := .Site.BaseURL }}
|
|
<article>
|
|
<header>
|
|
<h1 class="text-primary">{{ .Title }}</h1>
|
|
<div class="post-meta clearfix">
|
|
<div class="post-date pull-left">
|
|
Posted on
|
|
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">
|
|
{{ .Date.Format "Jan 2, 2006" }}
|
|
</time>
|
|
</div>
|
|
<div class="pull-right">
|
|
{{ range .Params.tags }}
|
|
<span class="post-tag small"><a href="{{ $baseurl }}/tags/{{ . | urlize }}">#{{ . }}</a></span>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<section>
|
|
{{ .Content }}
|
|
</section>
|
|
<footer>
|
|
{{ 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 }}
|
|
</footer>
|
|
</article>
|
|
|
|
{{ partial "footer.html" . }}
|