---
layout: default
---
{% assign items = "" %}
{% assign items = "" | split: ',' %}
{% for entry in site.data.nav %}
{% if page.url contains entry.url %}
{% for child in entry.children %}
{% assign items = items | push: child %}
{% endfor %}
{% endif %}
{% endfor %}
{% include sidebar.html %}
{% include header.html %}
{% include page-header.html %}
{% if content %}
{% endif %}
{% if items.size > 0 %}
{% endif %}
{% include footer.html %}