Add new icon text blog post

This commit is contained in:
Jeremy Thomas
2021-01-14 21:31:45 +00:00
parent 696621d028
commit 3ceb3213a7
4 changed files with 60 additions and 7 deletions

View File

@@ -58,7 +58,7 @@ breadcrumb:
<header class="bd-header">
<div class="bd-header-titles">
<h1 class="title">
{{ page.title }}
{{ page.title | markdownify }}
</h1>
<p class="subtitle is-4">
{{ page.date | date_to_string }}
@@ -81,13 +81,13 @@ breadcrumb:
<nav class="bd-prev-next-bis">
{% if page.previous.url %}
<a class="bd-prev-next-bis-previous" href="{{ page.previous.url }}">
← {{ page.previous.title }}
← {{ page.previous.name }}
</a>
{% endif %}
{% if page.next.url %}
<a class="bd-prev-next-bis-next" href="{{ page.next.url }}">
{{ page.next.title }} →
{{ page.next.name }} →
</a>
{% endif %}
</nav>