layout: compress


<!DOCTYPE html> <html prefix=“og: ogp.me/ns#”>

{% include head.html %}
{% if site.site-map[page.key].js %}
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top" onload="init{{ page.key | replace: '-', '_' }}()">
{% else %}
<body id="page-top" data-spy="scroll" data-target=".navbar-fixed-top" onload="init()">
{% endif %}
{% include nav.html %}

{% include header.html %}

{% for order in site.site-map[page.key].sections %}
    {% for page in site.pages %}
        {% assign name = page.name | remove: '.md' %}

        {% if name == order %}
            <section id="{{ name }}" class="content-section text-center">
                <div class="{{ name }}-section">
                  {% if page.full-width %}
                    <div class="container-fluid">
                  {% else %}
                    <div class="container">
                  {% endif %}
                        <div class="row">
                                {% if page.full-width %}
                                <div class="col-lg-12">
                                {% else %}
                                <div class="col-lg-8 col-lg-offset-2">
                                {% endif %}
                                    {{ page.content | markdownify }}
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </section>
        {% endif %}
     {% endfor %}
{% endfor %}

{% include footer.html %}
{% include js.html %}
</body>

</html>