layout | title |
---|---|
page |
Incoherent Apothegm |
{% for category in site.categories %}
{% capture this_category %}{{ category[0] | strip_newlines }}{% endcapture %}
<tr>
<th class="left-width-dynamic">
<a href="#{{ this_category | cgi_escape }}" class="category">{{ this_category }} <span>({{ site.categories[this_category].size }})</span></a>
</th>
<th class="right-width-dynamic">
<ul class="tags">
{% assign sorted_tags = site.tags | sort %}
{% for tag in sorted_tags %}
{% assign this_tag = tag[1] | where: "category", this_category %}
{% if this_tag != empty %}
<li ><a href="#{{ tag[0] | cgi_escape }}" class="tag">{{ tag[0] }} <span>({{ this_tag.size }})</span></a></li>
{% endif %}
{% endfor %}
</ul>
</th>
</tr>
{% endfor %}
{% for category in site.categories %} {% capture this_category %}{{ category[0] | strip_newlines }}{% endcapture %}
{% assign sorted_tags = site.tags | sort %} {% for tag in sorted_tags %} {% assign this_tag = tag[1] | where: "category", this_category %} {% if this_tag != empty %}-
{% for post in this_tag %}{% if post.title != null %}
- {{ post.date | date_to_string }} {{ post.title }} {% endif %}{% endfor %}
-
{% for post in site.posts %}
- {{ post.date | date_to_string }} {{ post.title }} {% endfor %}