2020-04-12 14:30:28 -04:00
|
|
|
{% if page.layout == 'post' %}
|
2020-04-12 14:50:47 -04:00
|
|
|
{% comment %}Thanks to https://www.bytedude.com/jekyll-previous-and-next-posts/{% endcomment %}
|
2020-04-12 14:30:28 -04:00
|
|
|
<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>
|
|
|
|
|
|
|
|
|
2020-04-12 20:22:11 -04:00
|
|
|
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
|
2020-04-12 14:30:28 -04:00
|
|
|
{% endif %}
|