fix padding in blog posts; change div sections to actual section tags (#60)

This commit is contained in:
David Schneiderbauer
2018-06-05 09:37:40 +02:00
committed by Lauris BH
parent c95f77d545
commit ac242874e5
5 changed files with 58 additions and 55 deletions

View File

@@ -1,27 +1,29 @@
{{ partial "header.html" . }}
{{ partial "navbar.html" . }}
<div class="container is-centered page">
<div class="content">
<h2>
<a href="{{ .Permalink }}">
{{ .Title }}
</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 }}
<section class="section">
<div class="container is-centered page">
<div class="content">
<h2>
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</b>
</p>
</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>
{{ .Content }}
{{ .Content }}
{{ partial "disqus.html" . }}
{{ partial "disqus.html" . }}
</div>
</div>
</div>
</section>
{{ partial "footer.html" . }}