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

29 lines
837 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>
{{ if .Params.author }}
<a class="author" href="{{ .Site.BaseURL }}/author/{{ lower .Params.author }}">{{ .Params.author }}</a>
{{ end }}
<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>