Browse Source

modified footer

master
Alexander Avery 2 years ago
parent
commit
005ad4ad23
  1. 19
      layouts/_default/single.html

19
layouts/_default/single.html

@ -16,14 +16,17 @@
<div class="content-wrapper">
<main>
{{ .Content }}
{{ with .NextInSection }}
<p>Next: <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></p>
{{ end }}
{{ with .PrevInSection }}
<p>Previous: <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></p>
{{ end }}
<br>
<a href="/"> >> Home</a>
<p>
{{ with .NextInSection }}
<b>Next: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
<br>
{{ end }}
{{ with .PrevInSection }}
<b>Previous: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
<br>
{{ end }}
<b><a href="/"> >> Home</a></b>
</p>
</main>
</div>
{{ end }}

Loading…
Cancel
Save