| title | Post by Tag |
|---|---|
| permalink | /tagview/ |
| active | archivebytag |
| sitemap | false |
| layout | page |
{% assign tags = site.tags | sort %} {% assign sorted_posts = site.posts | sort: 'title' %}
{% for tag in tags %}
{{ tag | first | replace: '-', ' ' }}({{ tag | last | size }}){% if forloop.last == false %} • {% endif %}{% endfor %}
{% for tag in tags %}
- {% for post in sorted_posts %}{%if post.tags contains tag[0]%}
- {{ post.title }} {% if post.author %} • {{ post.author }}{% endif %}{% if post.date %} • {{ post.date | date: "%B %e, %Y" }}{% endif %} {%endif%}{% endfor %}