1
Fork 0
blog/tagged/mozilla.liquid

16 lines
382 B
Plaintext

---
permalink: /tagged/mozilla.html
title: Posts tagged Mozilla
layout: simple.liquid
data:
route: posts
---
<ul>
{% for post in collections.posts.pages %}
{%- if post.data.tags and post.data.tags contains "mozilla" -%}
<li>{{ post.published_date | date: "%d %b %Y"}}: <a href="/{{post.permalink }}">{{post.title}}</a></li>
{%- endif -%}
{% endfor %}
</ul>