diff options
| author | Charlotte Koch <dressupgeekout@gmail.com> | 2023-10-23 22:50:06 -0700 |
|---|---|---|
| committer | Charlotte Koch <dressupgeekout@gmail.com> | 2023-10-23 22:50:06 -0700 |
| commit | f1970fa2506b230d317799ba8a1af12cead6071d (patch) | |
| tree | 7f7f82f843a6fdf7eb2d7eada7128f4e73a1f67d /layouts/_default | |
| parent | cb7361b92ad69984a69fe8ee4602e3f0ed084cf2 (diff) | |
Get rid of the Prev/Next nav widget from post-page
Actually it might be better if I made this widget conditional (I don't want
it on every page) but this will do
Diffstat (limited to 'layouts/_default')
| -rw-r--r-- | layouts/_default/single.html | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index fa2b82f..53f486a 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -13,25 +13,6 @@ {{ .Content }} <hr style="visibility: hidden;" /> - <ul class="pager"> - {{ with .Prev }} - <li class="previous"> - <a href="{{ .RelPermalink }}" data-toggle="tooltip" data-placement="top" title="{{ .Title }}"> - Previous<br> - <span>{{ .Title }}</span> - </a> - </li> - {{ end }} - {{ with .Next }} - <li class="next"> - <a href="{{ .RelPermalink }}" data-toggle="tooltip" data-placement="top" title="{{ .Title }}"> - Next<br> - <span>{{ .Title }}</span> - </a> - </li> - {{ end }} - </ul> - <hr style="visibility: hidden;" /> <!-- comments --> {{ partial "comments.html" . }} @@ -72,4 +53,4 @@ </div> </article> -{{ end }}
\ No newline at end of file +{{ end }} |
