theme/layouts/post/single.html

30 lines
603 B
HTML
Raw Normal View History

2016-12-01 22:06:23 +05:30
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<section class="section">
<div class="container is-centered page">
<div class="content">
<h2>
<a href="{{ .Permalink }}">
{{ .Title }}
2018-05-23 06:34:51 +05:30
</a>
</h2>
<p>
<i>{{ .Date.Format "Mon Jan 2, 2006" }}</i>
{{ i18n "authored_by" }}
<b>
<a href="https://github.com/{{ .Params.author | default .Site.Params.author }}">
{{ .Params.author | default .Site.Params.author }}
</a>
</b>
</p>
2016-12-01 22:06:23 +05:30
{{ .Content }}
{{ partial "disqus.html" . }}
</div>
2016-12-12 18:14:42 +05:30
</div>
</section>
2016-12-01 22:06:23 +05:30
{{ partial "footer.html" . }}