Skip to content

Latest commit

 

History

History
37 lines (34 loc) · 1.4 KB

archivebydate.md

File metadata and controls

37 lines (34 loc) · 1.4 KB
layout title permalink sitemap
page
Post by Date
/monthview/
false
{% for post in site.posts %} {% unless post.next %}

{{ post.date | date: '%Y' }}

{% else %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} {% if year != nyear %} {% if forloop.index != 1 %}{% endif %}

{{ post.date | date: '%Y' }}

    {% endif %} {% endunless %}
    {% capture month %}{{ post.date | date: '%m%Y' }}{% endcapture %}
    {% capture nmonth %}{{ post.next.date | date: '%m%Y' }}{% endcapture %}
    {% if month != nmonth %}
    {% if forloop.index != 1 %}</ul>{% endif %}
        <h2>{{ post.date | date: '%B %Y' }}</h2><ul>
    {% endif %}
    
    {% if post.link %}
        <h3 class="link-post">
            <a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
            <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></a></h3>
    {% else %}
        <h3><a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}<p class="date">{{ post.date |  date: "%B %e, %Y" }}</p></a></h3>
        <p>{{ post.excerpt | strip_html | truncate: 160 }}</p>
    {% endif %}
    {% endfor %} </ul>