initial commit
This commit is contained in:
55
by-year.html
Normal file
55
by-year.html
Normal file
@ -0,0 +1,55 @@
|
||||
---
|
||||
layout: default
|
||||
make-smaller-titles: true
|
||||
---
|
||||
|
||||
|
||||
<div class="container-fluid index">
|
||||
<div class="row index all-posts">
|
||||
|
||||
<h1 class="header author-header">{{ site.author_name }}</h1>
|
||||
<h2 class="header" itemprop="headline">All posts</h2>
|
||||
<h2 class="header categories" itemprop="headline"><small>grouped by
|
||||
|
||||
<div class="dropdown btn-group">
|
||||
<button class="btn btn-categories dropdown-toggle btn-xs" type="button" data-toggle="dropdown">Years
|
||||
<span class="caret"></span>
|
||||
</button>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="{{ site.baseurl }}/by-categories/">Categories</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</small></h2>
|
||||
|
||||
{% for post in site.posts %}
|
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
||||
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
|
||||
|
||||
{% if forloop.first %}
|
||||
<div class="col-md-12 content-panel articles">
|
||||
<h2 id="{{ this_year }}-ref">{{ this_year }}</h2>
|
||||
<ul>
|
||||
{% endif %}
|
||||
|
||||
<li>
|
||||
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
|
||||
<small class="hidden-xs">{{ post.date | date: "%B %-d, %Y" }}</small>
|
||||
</li>
|
||||
{% if forloop.last %}
|
||||
</ul>
|
||||
</div>
|
||||
{% else %}
|
||||
{% if this_year != next_year %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-12 content-panel articles">
|
||||
<h2 id="{{ next_year }}-ref">{{next_year}}</h2>
|
||||
<ul>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</div>
|
Reference in New Issue
Block a user