diff --git a/_includes/layouts/base.html b/_includes/layouts/base.html index e2c355ca..a2576741 100644 --- a/_includes/layouts/base.html +++ b/_includes/layouts/base.html @@ -4,50 +4,41 @@ {% endcomment %} - {% assign was_redirected = false %} - {% if env.production %} - {% assign is_index = page.url == "/" %} - {% if redirect_bases[tags[0]] or is_index %} - {% assign was_redirected = true %} - {% include "meta_redirect.html", is_index: is_index %} - {% endif %} +{% include "meta.html" %} + +
+ {% include "header.html" %} + {% if tags %} + {% assign primary_navigation = navigation[tags] %} + {% else %} + {% assign primary_navigation = site.primary_navigation %} {% endif %} - {% unless was_redirected %} - {% include "meta.html" %} - - {% include "header.html" %} - {% if tags %} - {% assign primary_navigation = navigation[tags] %} - {% else %} - {% assign primary_navigation = site.primary_navigation %} - {% endif %} + {% include "menu.html" %} - {% include "menu.html" %} + {{ content }} - {{ content }} + {% include "touchpoints-button.html" %} - {% include "touchpoints-button.html" %} - - {% include "footer.html" %} + {% include "footer.html" %} - {% comment %} Hide SVG Sprites {% endcomment %} - - {% include "scripts.html" %} - - {% endunless %} - + {% include "scripts.html" %} + + +