aboutsummaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-06-05 11:05:15 -0400
committerBradley Taunt <bt@btxx.org>2024-06-05 11:05:15 -0400
commitc430a8b3880b3c303c9254b964671151a4617376 (patch)
treedf9dacd08bcc93a3db9fc131db90f5f9ff798645 /_layouts/post.html
parente85eb98480d0c7af950859e95819901a20923fe7 (diff)
Further tweaks, improvements, content changes
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html14
1 files changed, 9 insertions, 5 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
index dc71866..2eaedf4 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -30,9 +30,13 @@ layout: base
{{ content }}
</div>
- {%- if site.disqus.shortname -%}
- {%- include disqus_comments.html -%}
- {%- endif -%}
-
- <a class="u-url" href="{{ page.url | relative_url }}" hidden></a>
+ <div>
+ <hr style="margin:40px auto;width:65%;">
+ {% if page.previous.url %}
+ <a class="prev" href="{{page.previous.url}}">&laquo; {{page.previous.title}}</a>
+ {% endif %}
+ {% if page.next.url %}
+ <a class="next" href="{{page.next.url}}">{{page.next.title}} &raquo;</a>
+ {% endif %}
+ </div>
</article>