<ul class=“post-list”>

{% for post in paginator.posts %}
<li class="post">
    <span class="post-meta">
        {{ post.date | date: "%b %-d, %Y" }}
        <span class="right-align">
            {% if post.tags != empty %}
                {% for tag in post.tags %}
                    {{ tag }}{% unless forloop.last %},{% endunless %}
                {% endfor %}
            {% endif %}
        </span>
    </span>
    <h3 class="post-title">
        <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
    </h3>
</li>
{% endfor %}

</ul> {% if paginator.total_pages > 1 %} <div class=“container” style=“text-align: center; margin: 0;”>

<a href="archive">post archives</a>

</div> {% endif %}