wfarr / wfarr.github.com

This URL has Read+Write access

wfarr.github.com / tags.haml
100644 17 lines (17 sloc) 0.357 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
:plain
  ---
  layout: default
  title: Will Farrington - Tags
  ---
.tags
  {% for topic in site.topics %}
  %h2 {{ topic }}
  %ul#posts
    {% for post in site.topics.{{ topic }} %}
    %li
      #post_date {{ post.date | date_to_string }}
      #post_link
        %a{ :href => "{{ post.url }}" }
          {{ post.title }}
    {% endfor %}
  {% endfor %}