29 lines
619 B
HTML
Executable file
29 lines
619 B
HTML
Executable file
{{ 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 }}
|