diff options
author | HombreLaser <sebastian-440@live.com> | 2024-05-07 11:45:46 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2024-05-07 11:45:46 -0600 |
commit | a4c0692f8dbab80cf5c0b5644ec050322040c4e3 (patch) | |
tree | 3ea2f9dc891a13bbcf8b8980c5bf6f2ebb0b9dc2 /archive.html | |
parent | acc3c3caf7029f92a2b146c29a510181c1b42a65 (diff) |
Add dark theme
Diffstat (limited to 'archive.html')
-rw-r--r-- | archive.html | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/archive.html b/archive.html deleted file mode 100644 index c509919..0000000 --- a/archive.html +++ /dev/null @@ -1,30 +0,0 @@ ---- -layout: default -permalink: /archive ---- - -<div class="column"> - <h1> - {% t global.archive %} - </h1> - - {% for post in site.posts %} - {% unless post.next %} - <h2>{{ post.date | date: '%Y' }}</h2> - <ul> - {% else %} - {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} - {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} - {% if year != nyear %} - </ul> - <h2>{{ post.date | date: '%Y' }}</h2> - <ul> - {% endif %} - {% endunless %} - <li> - <a href="{{ site.baseurl}}{{ post.url }}"> - {{ post.date | date: "%b %-d" }} - {{ post.title }} - </a> - </li> - {% endfor %} -</div> |