From 95ab0fbd79c9d713b28625ded94eb52eb0d58170 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=A7=89=20infominer?= Date: Sun, 29 Nov 2020 22:12:37 -0500 Subject: [PATCH] alpha sort tags on home --- _includes/archive-single.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/archive-single.html b/_includes/archive-single.html index 12bafc55..3e2ae9cc 100644 --- a/_includes/archive-single.html +++ b/_includes/archive-single.html @@ -31,6 +31,6 @@ {% endif %} {% if post.excerpt %}

{{ post.excerpt | markdownify | strip_html | truncate: 300 }}

{% endif %} -

{% include read-time.html %}
{% if post.tags %}Tags: {% for tag in post.tags %}[{{ tag }}] {% endfor %}
{% endif %}Published: {{ post.date | date: "%Y-%m-%d" }} {% if post.last_modified_at %}Updated: {{ post.last_modified_at }}{% endif %}


+

{% include read-time.html %}
{% if post.tags %}{% assign sorted_tags = post.tags | sort %}Tags: {% for tag in sorted_tags %}[{{ tag }}] {% endfor %}
{% endif %}Published: {{ post.date | date: "%Y-%m-%d" }} {% if post.last_modified_at %}Updated: {{ post.last_modified_at }}{% endif %}