diff --git a/_includes/nav/header_nav.html b/_includes/nav/header_nav.html
index 0fe945c..4206914 100644
--- a/_includes/nav/header_nav.html
+++ b/_includes/nav/header_nav.html
@@ -6,7 +6,11 @@
{% for item in site.data.nav %}
-
- {{ item.title }}
+ {% if item.category == "external" %}
+ {{ item.title }}
+ {% else %}
+ {{ item.title }}
+ {% endif %}
{% endfor %}
{% if site.searchconfig %}
@@ -27,4 +31,4 @@
headerNav.classList.toggle('navSlideoutActive');
document.dispatchEvent(event);
}, false);
-
\ No newline at end of file
+