wfarr / wfarr.github.com

wfarr (author)
Sun Jun 14 21:17:33 -0700 2009
commit  0129d57c16ae7f994ca18ea989d4b5e90d266e07
tree    4496b87bc23c934cd4a12f7e6577e5a10af60e7d
parent  e7e4b4ecd97dc88005047592008a51ffaf997716
wfarr.github.com / tags.html
100644 22 lines (21 sloc) 0.438 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
title: Will Farrington - Tags
---
<div class='tags'>
  {% for topic in site.topics %}
  <h2>{{ topic }}</h2>
  <ul id='posts'>
    {% for post in site.topics.{{ topic }} %}
    <li>
      <div id='post_date'>{{ post.date | date_to_string }}</div>
      <div id='post_link'>
        <a href='{{ post.url }}'>
          {{ post.title }}
        </a>
      </div>
    </li>
    {% endfor %}
  </ul>
  {% endfor %}
</div>