summaryrefslogtreecommitdiff
path: root/_pages
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-06-10 11:01:19 +0200
committerPatrick Spek <p.spek@tyil.nl>2020-06-10 11:01:19 +0200
commit13934914c0cf8bf359938dcc19dbea82fe33db61 (patch)
tree5c50f47555f10efd4beed8f2546e7146a91571c5 /_pages
parent624592d43e23bd26c3da30e255257b652d0e33ed (diff)
Implement tag pages
Diffstat (limited to '_pages')
-rw-r--r--_pages/posts.html28
1 files changed, 3 insertions, 25 deletions
diff --git a/_pages/posts.html b/_pages/posts.html
index 48bc522..98b61b5 100644
--- a/_pages/posts.html
+++ b/_pages/posts.html
@@ -9,32 +9,10 @@ description: >
{% markdown %}
## Blog posts
-I sometimes write articles to refer to. It saves a lot of time compared to
-explaining the same thing over and over again. As such, most articles will
-probably be little rants. All of the articles I wrote have been made public on
-my site, and can be found below, in alphabetical order.
-
-If you wish to respond to any article, whether it be criticism, reporting
-mistakes or simply because you want to discuss the points, feel free to send me
-an email. My email address is listed [on the homepage][home]. If you do,
-consider adding a PGP signature or sending it encrypted with [my pgp key][pgp].
-All feedback is greatly appreciated, so do not hesitate to contact me to give
-me yours.
-
-These articles are available under the [Creative Commons (CC BY-SA
-3.0)][cc-by-sa] license, which means you are free to use it for any purpose so
-long as you keep attribution to me (and preferably also just link to the
-original article) and do not relicense the article.
-
-I'd also like to note that these articles reflect my opinion, and only mine.
-Please refrain from accusing other people of holding my opinion for simply
-being referenced in my articles.
-
-[cc-by-sa]: https://creativecommons.org/licenses/by-sa/3.0/
-[home]: /
-[pgp]: http://pgp.mit.edu/pks/lookup?op=vindex&search=0x7A6AC285E2D98827
{% endmarkdown %}
+{% include posts-intro.md %}
+
{% for post in site.posts %}
{% if post.wip %}{% continue %}{% endif %}
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
@@ -50,7 +28,7 @@ being referenced in my articles.
<small>
{{ post.date | date: "%Y-%m-%d" }}
{% for tag in post.tags %}
- #{{ tag }}
+ <a href="{{ site.baseurl | prepend: site.url }}/tag/{{ tag | slugify }}">#{{ tag | slugify}}</a>
{% endfor %}
</small>
</li>