16 lines
382 B
Plaintext
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>
|