From 5c086bc52fa3a226bcf706b1f420a5d98ea377dd Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Wed, 15 Dec 2021 10:45:58 +0100 Subject: Redo most of the blog in Hugo Missing posts will have to be added later --- src/_pages/posts.html | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 src/_pages/posts.html (limited to 'src/_pages/posts.html') diff --git a/src/_pages/posts.html b/src/_pages/posts.html deleted file mode 100644 index 4f10758..0000000 --- a/src/_pages/posts.html +++ /dev/null @@ -1,44 +0,0 @@ ---- -layout: default -permalink: /posts/ -title: Blog posts -description: > - I occasionally write blogposts about things I find interesting. These are - usually programming, security or privacy related. ---- - -{% markdown %} -## Blog posts -{% endmarkdown %} - -{% include posts-intro.md %} - -{% for post in site.posts %} - {% if post.wip %}{% continue %}{% endif %} - {% assign this_year = post.date | date: "%Y" %} - - {% if this_year != prev_year %} - {% if forloop.first != true %} - - {% endif %} - -

{{ this_year }}

- - {% endif %} - - {% assign prev_year = post.date | date: "%Y" %} -{% endfor %} -- cgit v1.1