layout | permalink | title |
---|---|---|
page |
/archives/ |
Archives |
{% assign rawtags = "" %} {% for post in site.posts %} {% assign ttags = post.tags | join:'|' | append:'|' %} {% assign rawtags = rawtags | append:ttags %} {% endfor %} {% assign rawtags = rawtags | split:'|' | sort %}
{% assign tags = "" %} {% for tag in rawtags %} {% if tag != "" %} {% if tags == "" %} {% assign tags = tag | split:'|' %} {% endif %} {% unless tags contains tag %} {% assign tags = tags | join:'|' | append:'|' | append:tag | split:'|' %} {% endunless %} {% endif %} {% endfor %}
CatégoriesDate
{% for tag in tags %}
{% for post in site.posts %}
{% for post_tag in post.tags %}
{% if post_tag == tag %}
{{ post.date | date_to_string }} » [ {{ post.title }} ]({{ post.url }}) {% break %} {% endif %} {% endfor %} {% endfor %} {% endfor %}