1
Fork 0
blog/tagged/rust.liquid

22 lines
511 B
Plaintext
Raw Normal View History

2018-12-23 15:22:37 +00:00
---
permalink: /tagged/rust.html
title: Posts tagged Rust
layout: simple.liquid
data:
route: posts
---
2019-01-21 19:06:41 +00:00
<a href="/tagged/rust.xml">RSS Feed</a>
2019-04-23 21:13:08 +00:00
<table>
{%- for post in collections.posts.pages %}
{%- assign postyear = post.published_date | date: "%Y" %}
{%- if post.tags and post.tags contains "rust" -%}
2019-04-23 21:13:08 +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>