title: trina is artsy - the coffee chronicles layout: default header-img: art/7979755845_508af4de3b_o.jpg


{% include header.html %}

<div id=“post-content”>

{% if site.categories[page.category] %}
    {% for post in site.categories[page.category] %}
    <div class="bloglist-header">
        <a href="{{ site.baseurl }}{{ post.url }}"><h2>{{ post.title }}</h2></a>
        <span class="meta">Posted on {{ post.date | date: "%B %-d, %Y" }}</span>
    </div>

    <p>{{ post.excerpt }}</p>

    {% if post.excerpt != post.content %}
        <a href="{{ site.baseurl }}{{ post.url }}">Read more</a> | 
    {% endif %}

    <span>Tags: 
        {% for tag in post.tags %}
        <a href="{{ site.baseurl }}/tag/{{ tag }}">{{ tag }}</a>
        {% endfor %}
    </span>
    <br clear="all"><br clear="all">
    <hr>
    {% endfor %}
{% else %}
    <p>There are no posts in this category.</p>
{% endif %}

</div>