mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-07 12:06:26 +00:00
21 lines
677 B
HTML
21 lines
677 B
HTML
|
---
|
||
|
layout: page
|
||
|
title: Tag Index
|
||
|
description: "An archive of posts sorted by tag."
|
||
|
---
|
||
|
|
||
|
{% for tag in site.tags %}
|
||
|
<h2 id="{{ tag[0] }}">{{ tag[0] }}</h2>
|
||
|
<ul class="post-list">
|
||
|
{% assign pages_list = tag[1] %}
|
||
|
{% for post in pages_list %}
|
||
|
{% if post.title != null %}
|
||
|
{% if group == null or group == post.group %}
|
||
|
<li><a href="{{ site.url }}{{ post.url }}">{{ post.title }}<span class="entry-date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time></span></a></li>
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
{% assign pages_list = nil %}
|
||
|
{% assign group = nil %}
|
||
|
</ul>
|
||
|
{% endfor %}
|