<!--
The index.html file for each tag should look like the example below:
-->
---
layout: main
title: Blog - Eric Price - Freelance Web Design and Developer
---
<section class="blog">
<div class="row">
<div class="large-9 large-centered columns">
{% for post in site.tags.sass limit: 5 %}
<div class="posts-list">
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p>{{ post.date | date_to_string }}</p>
<p>{{ post.excerpt }}</p>
<p><a href="{{ post.url }}">Read More</a></p>
{% endfor %}
</div>
</div>
</section>