feat: add new design for website

This commit is contained in:
Stefan Imhoff
2021-07-13 16:34:22 +02:00
parent 6bdc7366b7
commit 0eda13f312
1016 changed files with 4124 additions and 176 deletions

View File

@@ -0,0 +1,23 @@
{% if previousPost %}
<a
aria-label="{{ previousPost.data.title }}"
class="pagination pagination-start"
href="{{ previousPost.url }}"
rel="prev"
title="{{ previousPost.data.title }}"
>
{% include "pagination-left-arrow.njk" %}
</a>
{% endif %}
{% if nextPost %}
<a
aria-label="{{ nextPost.data.title }}"
class="pagination pagination-end"
href="{{ nextPost.url }}"
rel="next"
title="{{ nextPost.data.title }}"
>
{% include "pagination-right-arrow.njk" %}
</a>
{% endif %}