Revise year listing

This commit is contained in:
andreykurenkov 2015-08-05 19:23:00 -07:00 committed by Michael Rose
parent b8408139be
commit 791d217088

View File

@ -34,16 +34,13 @@
</div> </div>
<div id="index"> <div id="index">
<h1>{{ page.title }}</h1> <h1>{{ page.title }}</h1>
{% for post in site.posts %} {% capture written_year %}'None'{% endcapture %}
{% unless post.next %} {% for post in site.posts %}
<h3>{{ post.date | date: '%Y' }}</h3> {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% else %} {% if year != written_year %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} <h3>{{ year }}</h3>
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} {% capture written_year %}{{ year }}{% endcapture %}
{% if year != nyear %} {% endif %}
<h3>{{ post.date | date: '%Y' }}</h3>
{% endif %}
{% endunless %}
<article> <article>
{% if post.link %} {% if post.link %}
<h2 class="link-post"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></a></h2> <h2 class="link-post"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a> <a href="{{ post.link }}" target="_blank" title="{{ post.title }}"><i class="fa fa-link"></i></a></h2>