Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1020 Bytes

index.markdown

File metadata and controls

41 lines (30 loc) · 1020 Bytes
layout
default

{% for post in site.posts %}

    {% if post.tags %}
        <div class="header-category">
              {% for tag in post.tags limit: 1%}
                    <a  href="{{ site.siteurl }}/tags.html#{{ tag }}" title="{{ tag }}">{{  tag |capitalize  }}</a>                 
            {% endfor %}
        </div>
    {% endif %}

    <h2 class="header-title">
        <a href="{{ site.siteurl }}/{{ post.url }}">{{ post.title }}</a>
    </h2>

    <div class="header-dateline">
        <time datetime="{{ post.date | date:"%b %d, %U" }}">{{ post.date | date:"%b %d, %Y" }}</time>
    </div>

</div>
<div class="article-summary">
    <p> {{ post.excerpt }}</p>
</div>
<div class="article-footer"><a href="{{ site.siteurl }}/{{ post.url }}"></a></div>

{% endfor %}