diff options
Diffstat (limited to 'website/content/blog/archive.html')
-rwxr-xr-x | website/content/blog/archive.html | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/website/content/blog/archive.html b/website/content/blog/archive.html deleted file mode 100755 index b9fdcd544..000000000 --- a/website/content/blog/archive.html +++ /dev/null @@ -1,22 +0,0 @@ ---- -title: Archive -layout: default -permalink: /blog/archive/ ---- -{% for post in site.posts %} - {% assign yearOfPost = post.date | date: "%Y" %} - {% if yearOfPost != currentYear %} - {% unless forloop.first %}</ul>{% endunless %} - <h1>{{ yearOfPost }}</h1> - <ul> - {% assign currentYear = yearOfPost %} - {% endif %} - <li> - <a href="{{ post.url }}"> - <span>{{ post.date | date: "%b %-d" }}</span> - {{ post.title }} - </a> - </li> - {% if forloop.last %} - </ul> - {% endif %} -{% endfor %} |