layout: default


{{ content }}

<h1>Posts</h1>

<ul class=“post-list”>

{% for post in site.posts %}
  <li>
    {% assign date_format = site.date_format | default: '%B %d, %Y' %}
    <span class="post-meta">{{ post.date | date: date_format }}</span>
    <h2 class="post-title">
      <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
    </h2>
  </li>
{% endfor %}

</ul>

<p class=“subscribe-link”>subscribe <a href=“{{ ”/feed.xml“ | relative_url }}”>via RSS</a></p>