Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 844 Bytes

tag.md

File metadata and controls

36 lines (29 loc) · 844 Bytes
title desc permalink
Blog Posts by Tag
A list of TEs blog posts organized by tags
/tag/

Click on a tag to see relevant list of posts.


{% for tag in site.tags %} {% assign t = tag | first %} {% assign posts = tag | last %}

    {% for post in posts %} {% if post.tags contains t %}
  • {{ post.title }} {{ post.date | date: "%B %-d, %Y" }}
  • {% endif %} {% endfor %}
---

{% endfor %}