From bfe9f2061cd2cd4901c79afe6bced1185ea216af Mon Sep 17 00:00:00 2001 From: Suhan Ha Date: Sun, 24 Sep 2023 19:32:08 +0900 Subject: [PATCH] fix broken paths --- _includes/navbar.html | 8 ++++---- _includes/post.html | 2 +- _includes/tags.html | 2 +- _layouts/post.html | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/_includes/navbar.html b/_includes/navbar.html index 0710e18..947a78c 100644 --- a/_includes/navbar.html +++ b/_includes/navbar.html @@ -5,11 +5,11 @@
@@ -17,14 +17,14 @@
diff --git a/_includes/post.html b/_includes/post.html index 3dbeb29..a1e27d8 100644 --- a/_includes/post.html +++ b/_includes/post.html @@ -1,7 +1,7 @@
diff --git a/_includes/tags.html b/_includes/tags.html index 90629c6..df8c828 100644 --- a/_includes/tags.html +++ b/_includes/tags.html @@ -1,6 +1,6 @@ {% if post %} {% assign tags = post.tags %} {% else %} {% assign tags = page.tags %} {% endif %}
{% for site_tag in site.tags %} {% for tag in tags %} {% if site_tag.identifier == tag %} - {{ site_tag.title }} + {{ site_tag.title }} {% endif %} {% endfor %} {% endfor %}
diff --git a/_layouts/post.html b/_layouts/post.html index 827be64..c3933c7 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -17,7 +17,7 @@
{% if author.image %} - author-profile + author-profile {% endif %}
Written by {% if author.name %}{{ author.name }}{% else %}unknown{% endif %}