diff options
author | HombreLaser <buran@silosneeded.com> | 2024-11-10 19:13:53 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-11-10 19:13:53 -0600 |
commit | 0044c08bb01e773cb212c305ff136bf45dc7c4a7 (patch) | |
tree | 20a65a917a7c7c8e988d0e65d956ede8f6856fe8 /categories.liquid | |
parent | d2417ff3c920e610273d0429b8f75fee1b0e6880 (diff) |
Improve archive
Diffstat (limited to 'categories.liquid')
-rw-r--r-- | categories.liquid | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/categories.liquid b/categories.liquid deleted file mode 100644 index 23b31a1..0000000 --- a/categories.liquid +++ /dev/null @@ -1,21 +0,0 @@ ---- -layout: default -permalink: /categories.html ---- - -<div class="column"> - {% for tag in site.tags %} - <h1>{{ tag[0] }}</h1> - {% for post in tag[1] %} - <div class="columns"> - <div class="column archive-date is-3"> - {% capture month%}{{ post.date | date: "%b" }}{% endcapture %} - {{ site.data[site.active_lang].strings.date[month]}} {{ post.date | date: "%e, %Y" }} - </div> - <div class="column pull-left"> - <a href="{{ site.baseurl}}{{ post.url }}">{{ post.title }}</a> - </div> - </div> - {% endfor %} - {% endfor %} -</div> |