{% if page.title == 'Home' %}
{% include "landing.html" %}
{% elif meta and meta.html %}
{% include meta.html[0] %}
{% elif page.title == 'About' %}
{% include "about.html" %}
{% elif page.title == 'Talks' %}
{% include "talks.html" %}
{% elif page.title == 'Quick Start' %}
{% include "quick-start.html" %}
{% elif page.title == 'Documentation' %}
{% include "documentation.html" %}
{% elif page.title == 'Download' %}
{% include "download.html" %}
{% elif page.title == 'Community' %}
{% include "community.html" %}
{% elif page.title == 'CVE' %}
{% include "cve.html" %}
{% else %}
{% endif %}
{% endfor %}
{% block content %}
{{ page.content }}
{% endblock %}
{% endif %}
{% include 'breadcrumbs.html' %}
{% for version in config.extra.versions %}
{% if config.extra.version == version.dir and not version.latest %}
Version {{ version.label }} is not the most recent version of the Apache Mynewt documentation. Click here to read the latest version.
{% include 'next_prev_links.html' %}