1
Fork 0
blog/tagged/nix.liquid

22 lines
507 B
Plaintext
Raw Normal View History

2023-07-24 12:42:16 +00:00
---
permalink: /tagged/nix.html
title: Posts tagged nix
layout: simple.liquid
data:
route: posts
---
<a href="/tagged/nix.xml">RSS Feed</a>
<table>
{%- for post in collections.posts.pages %}
{%- assign postyear = post.published_date | date: "%Y" %}
{%- if post.tags and post.tags contains "nix" -%}
2023-07-24 12:42:16 +00:00
<tr>
<td>{{ post.published_date | date: "%d. %b %Y"}}</td>
<td><a href="/{{post.permalink }}">{{post.title}}</a></td>
</tr>
{%- endif %}
{%- endfor %}
</table>