{% include head.html %} {% include header.html %}

<body>

<div class="home">
  <div class="content-wrapper">
    {% if page.title %}
    <div class="title-wrapper">
      <h1 class="page-title"> {{ page.title }}</h1>
      <div class="page-date">{{ page.date | date_to_long_string }}</div>
      {% if page.description %}
      <h3 class="page-description">{{ page.description }}</h3>
      {% endif %}
      {% if page.github_url %}
      <h2 class="page-gh">
        <a href="{{ page.github_url }}">
          View {{ page.github_short }} on GitHub
        </a>
      </h2>
      {% endif %}
    </div>
    {% endif %}
    {% if page.image %}
    <img src="{{ site.baseurl }}{{ page.image }}"
      alt="Picture of {{ page.title }}" />
    {% endif %}
    {{ content }}
  </div>
</div>

</body>

{% include footer.html %}