<ul class=“list-group”> {% for post in site.posts %}

<li class="list-group-item">
    <a href="{{post.url}}" >
        {{post.title}} - <small class="text-muted">{{post.date |  date: "%A, %B %-d, %Y"}}</small>
    </a>    
</li>

{% endfor %} </ul>