<div class="archive-sort">
+
+
+
by:
{% if page.url == '/archive-d/' %}
-date | <a href="{{site.baseurl}}/archive-c/">category</a>
-{% else if page.url == '/archive-c/' %}
-<a href="{{site.baseurl}}/archive-d/">date</a> | category
+
+ date | <a href="{{site.baseurl}}/archive-c/">category</a> | <a href="{{site.baseurl}}/archive-i/">thumbs</a>
+
+{% endif %}
+{% if page.url == '/archive-c/' %}
+
+ <a href="{{site.baseurl}}/archive-d/">date</a> | category | <a href="{{site.baseurl}}/archive-i/">thumbs</a>
+
+{% endif %}
+{% if page.url == '/archive-i/' %}
+
+ <a href="{{site.baseurl}}/archive-d/">date</a> | <a href="{{site.baseurl}}/archive-c/">category</a> | thumbs
+
{% endif %}
</div>
--- /dev/null
+---
+layout: default
+title: archive
+---
+
+{% include archive-sort.html %}
+
+<ul class="thumbs">
+ {% for post in site.posts %}
+ {% capture day %}{{ post.date | date: '%Y' }}{% endcapture %}
+ {% capture nday %}{{ post.next.date | date: '%Y' }}{% endcapture %}
+
+ <li>
+ <a href="{{ site.baseurl }}{{ post.url }}">
+ <span class="img"><img src="{{ post.thumb }}" /></span>
+ <!-- <br />
+ {{ post.title }} -->
+ </a>
+ </li>
+
+ {% endfor %}
+
+ <li>
+ <a href="/past/">
+ <span class="img"><img src="{{ post.thumb }}" /></span>
+ </a>
+ </li>
+</ul>
+
+
+<!--
+
+<div class="posts">
+{% for category in site.categories %}
+<h3>{{ category | first }}</h3>
+ <ul class="posts">
+ {% for posts in category %}
+ {% for post in posts %}
+ <li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
+ {% endfor %}
+ {% endfor %}
+ </ul>
+{% endfor %}
+</div>
+
+
+<div id="home">
+ <ul class="posts">
+ {% for post in site.posts %}
+ <li>
+ <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
+ </li>
+ {% endfor %}
+ </ul>
+</div>
+-->