---
main: foo, bar, qaz
---
{% include meta.html %}
{% include styles.html %}
{% if site.google_analytics_ua or site.dap_agency %}
{% include analytics.html %}
{% endif %}
{% include skipnav.html %}
{% include header.html %}
{% assign hero = page.hero %}
{% include components/hero.html %}
{% if page.tagline and page.intro %}
{{ page.tagline }}
{{ page.intro | markdownify }}
{% endif %}
{% capture _graphics %}
{% include graphic-list.html graphics=page.graphics %}
{% endcapture %}
{% if page.graphics_position != 'after' %}
{{ _graphics }}
{% endif %}
{% if page.layout == 'post' %}
{{ content }}
{% else %}
{{ content }}
{% endif %}
{% if page.graphics_position == 'after' %}
{{ _graphics }}
{% endif %}
{% include footer.html %}
{% include scripts.html %}