layout: default


<div class=“home”>

<div class="row">

    <div class="col-md-12 text-center">
        <div class="jumbotron text-center">
            <h1 class="page-heading">
                {{ site.title }}
                <br>
                <small>{{ site.description }}</small>
            </h1>
        </div>
    </div>

    <div class="col-md-8">
        <h2>
            Posts
            <small class="rss-subscribe">
                subscribe
                <a href="{{ "/feed.xml" | relative_url }}">via RSS</a>
            </small>
        </h2>
        {% for post in site.posts %}
            <article>
                <h3>
                    <a class="post-link" href="{{ post.url | relative_url }}">
                        {{ post.title | escape }}
                    </a>
                </h3>
                <span class="post-meta">
                    posted at {{ post.date | date: "%Y-%m-%d %H:%M:%S" }}
                </span>
            </article>
        {% endfor %}
    </div>

    {% include sidebar.html %}
</div><!-- /.row -->

</div>