diff --git a/_layouts/archive-category.html b/_layouts/archive-category.html index 1a477a6..68ab211 100644 --- a/_layouts/archive-category.html +++ b/_layouts/archive-category.html @@ -16,7 +16,13 @@ layout: default {{ post.date | date: "%b %-d, %Y" }} - {{ post.title }} + {% if post.redirect == blank %} + {{ post.title }} + {% elsif post.redirect contains '://' %} + {{ post.title }} + {% else %} + {{ post.title }} + {% endif %} {% endfor %} diff --git a/_layouts/archive-tag.html b/_layouts/archive-tag.html index 7d1caf7..acef07f 100644 --- a/_layouts/archive-tag.html +++ b/_layouts/archive-tag.html @@ -16,7 +16,13 @@ layout: default {{ post.date | date: "%b %-d, %Y" }} - {{ post.title }} + {% if post.redirect == blank %} + {{ post.title }} + {% elsif post.redirect contains '://' %} + {{ post.title }} + {% else %} + {{ post.title }} + {% endif %} {% endfor %} diff --git a/_layouts/archive-year.html b/_layouts/archive-year.html index 125e9b0..55154bc 100644 --- a/_layouts/archive-year.html +++ b/_layouts/archive-year.html @@ -16,7 +16,13 @@ layout: default {{ post.date | date: "%b %-d, %Y" }} - {{ post.title }} + {% if post.redirect == blank %} + {{ post.title }} + {% elsif post.redirect contains '://' %} + {{ post.title }} + {% else %} + {{ post.title }} + {% endif %} {% endfor %}