mirror of
https://github.com/bspeice/speice.io
synced 2024-11-05 01:28:09 -05:00
Add forward/backward navigation
This commit is contained in:
parent
68fd13176d
commit
6228cfd18e
23
_includes/footer.html
Normal file
23
_includes/footer.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{% if page.layout == 'post' %}
|
||||||
|
{# Thanks to https://www.bytedude.com/jekyll-previous-and-next-posts/ #}
|
||||||
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
<div class="post-nav">
|
||||||
|
<div>
|
||||||
|
{% if page.previous.url %}
|
||||||
|
<a href="{{page.previous.url}}">« {{page.previous.title}}</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
<div class="post-nav-next">
|
||||||
|
{% if page.next.url %}
|
||||||
|
<a href="{{page.next.url}}">{{page.next.title}} »</a>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<script type="text/javascript"
|
||||||
|
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
|
||||||
|
</script>
|
||||||
|
{% endif %}
|
@ -2,7 +2,7 @@
|
|||||||
layout: post
|
layout: post
|
||||||
title: "Hello!"
|
title: "Hello!"
|
||||||
description: ""
|
description: ""
|
||||||
category: not-nerdy
|
category:
|
||||||
tags: []
|
tags: []
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -94,4 +94,21 @@ blockquote {
|
|||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
padding-left: 1.8rem;
|
padding-left: 1.8rem;
|
||||||
border-left: 5px solid $gray;
|
border-left: 5px solid $gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-nav {
|
||||||
|
/* Insert your custom styling here. Example:
|
||||||
|
|
||||||
|
font-size: 14px;
|
||||||
|
*/
|
||||||
|
display: flex;
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
.post-nav div {
|
||||||
|
/* flex-grow, flex-shrink, flex-basis */
|
||||||
|
flex: 1 1 0;
|
||||||
|
}
|
||||||
|
.post-nav-next {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user