diff --git a/_includes/nav.html b/_includes/nav.html
index d561a42..8042aa4 100644
--- a/_includes/nav.html
+++ b/_includes/nav.html
@@ -13,22 +13,26 @@
{%- assign children_list = site.html_pages | where: "parent", node.title | sort:"nav_order" -%}
{%- for child in children_list -%}
- -
- {%- if page.url == child.url or page.parent == child.title -%}
- {%- assign second_level_url = child.url | absolute_url -%}
- {%- endif -%}
- {{ child.title }}
- {%- if child.has_children -%}
- {%- assign grand_children_list = site.html_pages | where: "parent", child.title | sort:"nav_order" -%}
-
- {%- endif -%}
-
+ {%- unless child.nav_exclude -%}
+ -
+ {%- if page.url == child.url or page.parent == child.title -%}
+ {%- assign second_level_url = child.url | absolute_url -%}
+ {%- endif -%}
+ {{ child.title }}
+ {%- if child.has_children -%}
+ {%- assign grand_children_list = site.html_pages | where: "parent", child.title | sort:"nav_order" -%}
+
+ {%- for grand_child in grand_children_list -%}
+ {%- unless grand_child.nav_exclude -%}
+ -
+ {{ grand_child.title }}
+
+ {%- endunless -%}
+ {%- endfor -%}
+
+ {%- endif -%}
+
+ {%- endunless -%}
{%- endfor -%}
{%- endif -%}