--- layout: default --- <div class="posts"> {% for post in site.posts %} <article class="post"> <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1> <p class='info'> <span>{{post.date | date: "%B %d, %Y" }}</span> / <span>by {{post.author}}</span> </p> <div class="entry"> {{ post.excerpt }} </div> <a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a> </article> {% endfor %} </div>