layout: default


<div class=“page-head”>

<h1 class="title is-size-1 has-text-centered has-text-info">{{ page.title }}</h1>

</div>

<div class=“section post”>

<div class="container page">
  <p class="author has-text-centered">
  {% if page.author %}
    <span>by {{ page.author }}</span>
  {% endif %}

  {% if page.author and page.date %}
    <span> - </span>
  {% endif %}

  {% if page.date %}
    <span>{{ page.date | date: '%B %d, %Y' }}</span>
  {% endif %}
  </p>

  <p class="categories has-text-centered">
  {% for category in page.categories %}
    <span>{{ category }}</span>
  {% endfor %}
  </p><hr>

  <div class="post-body">{{ content }}</div>
</div> {% comment %} container {% endcomment %}

</div> {% comment %} section {% endcomment %}