flatten directory structure

add devenv
build gem bundle with nix
This commit is contained in:
Pim Kunis 2024-04-21 09:47:19 +02:00
parent e5305bfde9
commit 163458b98a
85 changed files with 1014 additions and 12 deletions

16
_includes/navigation.html Normal file
View file

@ -0,0 +1,16 @@
<nav class="post-nav">
{% if page.previous %}
<a
class="post-nav-item post-nav-prev"
href="{{ page.previous | relative_url }}"
>
<div class="nav-arrow">Previous</div>
<span class="post-title">{{ page.previous.title }}</span>
</a>
{% endif %} {% if page.next %}
<a class="post-nav-item post-nav-next" href="{{ page.next | relative_url }}">
<div class="nav-arrow">Next</div>
<span class="post-title">{{ page.next.title }}</span>
</a>
{% endif %}
</nav>