Sha256: 7b77b9bb4f89b4ccb36edb2e52ea0cbf1edded205c55ad65add3bbcffc2a13cd

Contents?: true

Size: 978 Bytes

Versions: 11

Compression:

Stored size: 978 Bytes

Contents

{% assign taxonomies = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}

<div class="taxonomies-wrapper">
  <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 class="taxonomy-count">{{ taxonomy.size }}</span>
        </a> 
      </li>
    {%- endfor -%}
  </ul>
</div>

{%- for taxonomy in taxonomies -%}
  <h2 id="{{ taxonomy.name }}">{{ taxonomy.name }}</h2>
  <ul class="post-list-by-taxonomy">
    {%- assign posts = taxonomy.items -%}
    {%- for post in posts -%}
      <li>
        <time datetime="{{ page.date | date_to_xmlschema }}">{{ post.date | date: "%Y-%m-%d" }}</time> 
        &raquo;
        <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
      </li>
    {%- endfor -%}
  </ul>
{%- endfor -%}

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
daydream-theme-1.1.0 _includes/archive-by-years.html
daydream-theme-1.0.4 _includes/archive-by-years.html
daydream-theme-1.0.3 _includes/archive-by-years.html
daydream-theme-1.0.2 _includes/archive-by-years.html
daydream-theme-1.0.1 _includes/archive-by-years.html
daydream-theme-1.0.0 _includes/archive-by-years.html
daydream-theme-0.1.0 _includes/archive-by-years.html
ockham-0.1.0 _includes/archive-by-years.html
jekyll-theme-hydure-2.0.0 _includes/archive-by-years.html
jekyll-theme-hydure-1.0.0 _includes/archive-by-years.html
jekyll-theme-hydure-0.1.0 _includes/archive-by-years.html