Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 788 Bytes

writing.md

File metadata and controls

27 lines (24 loc) · 788 Bytes
layout title
page
Essays
    {% for post in site.posts %} {% if post.p_tags contains "essay" %}
    {% unless post.next %}
    {% else %}
      {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
      {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
      {% if year != nyear %}
        <h3>{{ post.date | date: '%Y' }}</h3>
      {% endif %}
    {% endunless %}
    
    <li itemscope>
      <a href="{{ site.github.url }}{{ post.url }}">{{ post.title }}</a>
      <p class="post-date"><span><i class="fa fa-calendar" aria-hidden="true"></i> {{ post.date | date: "%B %-d" }} - <i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</span></p>
    </li>
    {% endif %}
    

    {% endfor %}