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

25 lines
673 B
HTML

<div class="entry">
<header>
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
</header>
<nav>
{{ 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 }}
</nav>
<aside>
<span class="author">{{ .Params.author }}</span>
<span class="date">{{ dateFormat "2006-01-02 15:04" .Date }}</span>
</aside>
<section>
{{ .Content }}
</section>
</div>