Skip to content

Latest commit

 

History

History
58 lines (53 loc) · 2.05 KB

posts.md

File metadata and controls

58 lines (53 loc) · 2.05 KB
layout title
page
Incoherent Apothegm

By Category

{% 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 %}

{{ this_category | upcase }}

{% assign sorted_tags = site.tags | sort %} {% for tag in sorted_tags %} {% assign this_tag = tag[1] | where: "category", this_category %} {% if this_tag != empty %}

{{ tag[0] }}

    {% for post in this_tag %}{% if post.title != null %}
  • {{ post.date | date_to_string }} {{ post.title }}
  • {% endif %}{% endfor %}
{% endif %} {% endfor %} {% endfor %}

By Date

    {% for post in site.posts %}
  • {{ post.date | date_to_string }} {{ post.title }}
  • {% endfor %}