Skip to content

Commit

Permalink
Merge pull request mmistakes#166 from andreykurenkov/improve_year_output
Browse files Browse the repository at this point in the history
Simplify year output logic in post_index
  • Loading branch information
jluccisano committed Feb 12, 2017
2 parents 6615165 + 620d43d commit 089f2c0
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions _layouts/post-index.html
Expand Up @@ -34,16 +34,13 @@
</div>
<div id="index">
<h1>{{ page.title }}</h1>
{% for post in site.posts %}
{% unless post.next %}
<h3>{{ post.date | date: '%Y' }}</h3>
{% 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 %}
{% capture written_year %}'None'{% endcapture %}
{% for post in site.posts %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% if year != written_year %}
<h3>{{ year }}</h3>
{% capture written_year %}{{ year }}{% endcapture %}
{% endif %}
<article>
{% 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>
Expand Down

0 comments on commit 089f2c0

Please sign in to comment.