30 lines
619 B
HTML
30 lines
619 B
HTML
|
{{ with .PrevInSection }}
|
||
|
<div class="prev-post">
|
||
|
<p>
|
||
|
<a href="{{ .RelPermalink }}">
|
||
|
←
|
||
|
{{ i18n "previous" }}:
|
||
|
{{ .Title }}
|
||
|
</a>
|
||
|
</p>
|
||
|
<p class="prev-post-date">
|
||
|
{{ dateFormat "January 2, 2006" .Date }}
|
||
|
</p>
|
||
|
</div>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ with .NextInSection }}
|
||
|
<div class="next-post">
|
||
|
<p>
|
||
|
<a href="{{ .RelPermalink }}">
|
||
|
{{ i18n "next" }}:
|
||
|
{{ .Title }}
|
||
|
→
|
||
|
</a>
|
||
|
</p>
|
||
|
<p class="next-post-date">
|
||
|
{{ dateFormat "January 2, 2006" .Date }}
|
||
|
</p>
|
||
|
</div>
|
||
|
{{ end }}
|