layout: default
<section class=“posts”>
<div class="flex-row-between"> <h1>Tag #{{page.tag}}</h1> <a href="{{ site.github.url }}"><i class="fa fa-home" aria-hidden="true"></i> Home</a> </div> <ul> {% for post in site.posts %} {% if post.tags contains page.tag %} <li><a class="post" href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%b %-d, %Y" }}</time></li> {% endif %} {% endfor %} </ul>
</section>
<section class=“tags”>
<h2>All tags:</h2> {% assign tags = site.tags | sort %} {% for tag in tags %} <ul> <li> <a class="posts" href=" {{ site.baseurl }}/tag/{{ tag | first | slugify }}/">{{ tag[0] | replace:'-', ' ' }} ({{ tag | last | size }}){% unless forloop.last %}, {% endunless %} {% endfor %} </a> </li> </ul>
</section>