Sha256: c1ee663b879affa3a8c7c864487f06fe0e365a0dcc9c904ea0bef094cccdb60b

Contents?: true

Size: 486 Bytes

Versions: 1

Compression:

Stored size: 486 Bytes

Contents

{% assign tags = include.data | map: "tags" | uniq %}
{% for tag in tags %}
  {% capture accordion_content %}
    {% assign posts = include.data | where: "tags",  tag %}
    {% include blog-list.html date=include.date share_buttons=include.share_buttons %}
  {% endcapture %}
  {% if tag.size > 0 %}
    {% assign title = tag %}
  {% else %}
    {% assign title = "Uncategorised" %}
  {% endif %}
  {% include single-accordion.html title=title content=accordion_content %}
{% endfor %}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-chaos-0.1.1 _includes/nested-blog-list.html