layout: default


<article role=“article”>

{% if page.title %}
      <h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
{% endif %}

{{ content }} </article>

<form action=“{{ site.simple_search }}” method=“get”> <fieldset role=“search”>

<input type="hidden" name="sites" value="blog.ipsaloquitur.org" />
<input class="search" type="text" name="q" results="0" placeholder="Search for…"/>

</fieldset> </form>

<div id=“blog-archives”>

{% for post in site.posts %} {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %} {% unless year == this_year %} {% assign year = this_year %}
<h2>{{ year }}</h2>
{% endunless %}
<article>

<h1><a href=“{{ root_url }}{{ post.url }}”>{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1> <footer>

<time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate>{{ post.date | date: "<span class='month'>%b</span> <span class='day'>%d</span>"}}</time>

</footer>

</article>
{% endfor %}

</div>