diff --git a/_includes/latest_posts.html b/_includes/latest_posts.html
index 91514d7..bb82acb 100644
--- a/_includes/latest_posts.html
+++ b/_includes/latest_posts.html
@@ -14,7 +14,16 @@
| {{ item.date | date: "%b %-d, %Y" }} |
- {{ item.title }}
+ {% if item.redirect == blank %}
+ {{ item.title }}
+ {% elsif item.redirect contains '://' %}
+ {{ item.title }}
+
+ {% else %}
+ {{ item.title }}
+ {% endif %}
|
{%- endfor %}
diff --git a/blog/index.html b/blog/index.html
index f6cebe9..ad629b2 100644
--- a/blog/index.html
+++ b/blog/index.html
@@ -59,16 +59,14 @@ pagination:
{%- endif -%}
{{ post.description }}