layout: default


<section class=“introduction”>

<div class="bio">
  <p>{{site.description}}</p>
  {{ content }}
</div>

</section> <section class=“articles”>

<ul>
  {% for post in site.posts %}
  <li class="article">
    <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
    <p class="date">
      {% if post.date != null %}
      {% assign d = post.date | date: "%-d" %}
      {{ post.date | date: "%B" }}
      {% case d %}{% when "1" or "21" or "31" %}{{ d }}st{% when "2" or "22" %}{{ d }}nd{% when "3" or "23" %}{{ d }}rd{% else %}{{ d }}th{% endcase %},
      {{ post.date | date: "%Y" }}
      {% endif %}
    </p>
    <ul class="tags">
      {% for tags in post.tags %}
      <li class="tag">{{ tags }}</li>
      {% endfor %}
    </ul>
  </li>
  {% endfor %}
</ul>

</section>