---
layout: compress
---

{% include absolute-url.liquid %}

<!DOCTYPE html>
<html lang="{{ site.locale | slice: 0,2 }}">
  <head>
  {% include head.html %}
  </head>

  <body>

  {% include browser-upgrade.html %}
  {% include navigation.html %}

  {% if page.header.image %}
    <div class="image-wrap">
      <img src=
        {% if page.header.image contains "http" %}
          "{{ page.header.image }}"
        {% else %}
          "{{ page.header.image | prepend: "/images/" | prepend: absurl }}"
        {% endif %}
        alt="{{ page.title }}">
      {% if page.header.caption %}
        <span class="image-caption">{{ page.header.caption | markdownify | remove: "<p>" | remove: "</p>" }}</span>
      {% endif %}
    </div><!-- /.image-wrap -->
  {% endif %}

  {% if site.breadcrumbs %}
    {% include breadcrumbs.html %}
  {% endif %}

  <div id="main" role="main">
    <div class="author-profile">
      {% include author-profile.html %}
    </div>
    {{ content }}
  </div><!-- /#main -->

  <div class="footer-wrap">
    <footer>
      {% include footer.html %}
    </footer>
  </div><!-- /.footer-wrap -->

  {% include scripts.html %}

  </body>
</html>