<!DOCTYPE html> <html lang=“en”>

{% include head.html %}
<body>
  <div id="container">
    <header class="masthead">
      <h3 class="masthead-title">
        <a href="{{ "/" | relative_url }}" title="Home">{{ site.title }}</a>
      </h3>
      {% if site.navigation %}
        <nav class="masthead-navigation">
          <ol>
            {% for item in site.navigation %}
              <li>
                <a href="{{ item.url }}">{{ item.title }}</a>
              </li>
            {% endfor %}
          </ol>
        </nav>
      {% endif %}
    </header>
    <main>
      {{ content }}
    </main>
    <hr>
    <footer class="colophon">
        &copy; <time datetime="{{ site.time | date_to_xmlschema }}">{{ site.time | date: '%Y' }}</time>
        {% if site.author.url %}
            <a href="{{ site.author.url }}">{{ site.author.name }}</a>
        {% else %}
            {{ site.author.name }}
        {% endif %}
    </footer>
  </div>
</body>

</html>