0
0
Fork 0
zblog/themes/zero/layouts/_default/si.html

27 lines
736 B
HTML

<div class="entry">
<nav class="pagination">
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}">newer</a>
{{ else }}
<a href="" class="deactivated">newer</a>
{{ end }}
</nav>
<header>
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
</header>
<aside>
<span class="author">{{ .Params.author }}</span>
<span class="date">{{ dateFormat "2006-01-02 15:04" .Date }}</span>
</aside>
<section>
{{ .Content }}
</section>
<nav class="pagination">
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink }}">older</a>
{{ else }}
<a href="" class="deactivated">older</a>
{{ end }}
</nav>
</div>