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

21 lines
523 B
HTML

<div class="entry">
<header>
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
</header>
<aside>
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink }}">prev</a>
{{ else }}
<a href="" class="deactivated">prev</a>
{{ end }}
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}">next</a>
{{ else }}
<a href="" class="deactivated">next</a>
{{ end }}
</aside>
<section>
{{ .Content }}
</section>
</div>