layout: default


{{ content }}

<div class=“panel-group”>

{% for post in site.posts %}
    <div class="panel panel-default">
        <div class="panel-heading">
            <h2>
                <a href="{{ post.url }}">
                    {{ post.title }}
                </a>
            </h2>
        </div>
        <div class="panel-body">
            <p>
                {{ post.excerpt }}
            </p>
        </div>
        <div class="panel-footer">
            <p>
               Authored by: {{ post.author }} | Published on: {{ post.date | date: "%a %m-%d-%Y" }}
            </p>
        </div>
    </div>
{% endfor %}

</div>