Sha256: 8e0dda724a66efccb388865fa9a7cb7a3ad865513500c733b7ddc516618bba23
Contents?: true
Size: 460 Bytes
Versions: 5
Compression:
Stored size: 460 Bytes
Contents
{% assign postsByYear = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %} {% for year in postsByYear %} <h2 class="post-ref-category">{{ year.name }}</h2> {% for post in year.items %} <div class="post-ref"> <a href="{{ post.url | relative_url }}">{{ post.title }}</a> <span></span> <time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string: "ordinal", "US" }}</time> </div> {% endfor %} {% endfor %}
Version data entries
5 entries across 5 versions & 1 rubygems