aprescott/serif

View on GitHub
site_template/_templates/archive_page.html

Summary

Maintainability
Test Coverage
<h1>{{ month | date: "%b %Y" }} ({{ posts | size }})</h1>

<ul>
    {% for post in posts %}
        <li>
            <a href="{{ post.url }}">{{ post.title }}</a>
        </li>
    {% endfor %}
</ul>