You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
--- |
|
layout: post-index |
|
permalink: /tags/ |
|
title: Tag Archive |
|
description: "An archive of posts sorted by tag." |
|
--- |
|
|
|
<ul class="entry-meta inline-list"> |
|
{% assign tags_list = site.tags %} |
|
{% if tags_list.first[0] == null %} |
|
{% for tag in tags_list %} |
|
<li><a href="#{{ tag }}" class="tag">{{ tag }} <span>{{ site.tags[tag].size }}</span></a></li> |
|
{% endfor %} |
|
{% else %} |
|
{% for tag in tags_list %} |
|
<li><a href="#{{ tag[0] }}" class="tag">{{ tag[0] }} <span>{{ tag[1].size }}</span></a></li> |
|
{% endfor %} |
|
{% endif %} |
|
{% assign tags_list = nil %} |
|
</ul> |
|
|
|
{% for tag in site.tags %} |
|
<article> |
|
<h2 id="{{ tag[0] }}">{{ tag[0] }}</h2> |
|
<ul> |
|
{% assign pages_list = tag[1] %} |
|
{% for post in pages_list %} |
|
{% if post.title != null %} |
|
{% if group == null or group == post.group %} |
|
<li class="entry-title"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li> |
|
{% endif %} |
|
{% endif %} |
|
{% endfor %} |
|
{% assign pages_list = nil %} |
|
{% assign group = nil %} |
|
</ul> |
|
</article><!-- /.hentry --> |
|
{% endfor %} |