Sha256: fd6dbec38c22de1147256a41fa32e0fa1390520951927d7bc81945a719a9b887
Contents?: true
Size: 884 Bytes
Versions: 6
Compression:
Stored size: 884 Bytes
Contents
{% assign taxonomies = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %} <ul class="taxonomies"> {%- for taxonomy in taxonomies -%} <li> {%- capture link -%}{{ page.permalink }}#{{ taxonomy.name }}{%- endcapture -%} <a class="taxonomy" href="{{ link | relative_url }}"> <span>{{ taxonomy.name }}</span> <span>{{ taxonomy.size }}</span> </a> </li> {%- endfor -%} </ul> {%- for taxonomy in taxonomies -%} <h2 id="{{ taxonomy.name }}">{{ taxonomy.name }}</h2> <ul> {%- assign posts = taxonomy.items -%} {%- for post in posts -%} <li> <time class="archive-date" datetime="{{ page.date | date_to_xmlschema }}">{{ post.date | date: "%Y-%m-%d" }}</time> » <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a> </li> {%- endfor -%} </ul> {%- endfor -%}
Version data entries
6 entries across 6 versions & 3 rubygems