oliverdavies.uk/source/rss/drupal-planet.xml.twig

28 lines
735 B
Twig
Raw Normal View History

2024-09-11 20:30:50 +01:00
---
layout: feed
2025-08-21 00:28:10 +01:00
title: Oliver Davies
description: ~
2024-09-11 20:30:50 +01:00
permalink: /rss/drupal-planet.xml
2025-08-21 00:28:10 +01:00
use: [posts]
2024-09-11 20:30:50 +01:00
---
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
<channel>
<title>{{ page.title }}</title>
<description>{{ page.description }}</description>
<link>{{ site.url }}/daily</link>
2025-08-21 00:28:10 +01:00
{% for post in data.posts if post.drupal_planet %}
2024-09-11 20:30:50 +01:00
<item>
2025-08-21 00:28:10 +01:00
<title>{{ post.title }}</title>
<link>{{ site.url }}{{ post.url }}</link>
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
2024-09-11 20:30:50 +01:00
<description>
2025-08-21 00:28:10 +01:00
{{- post.blocks.content -}}
2024-09-11 20:30:50 +01:00
</description>
2025-08-21 00:28:10 +01:00
<pubDate>{{ post.date|date('D, d M Y H:i:s') }} GMT</pubDate>
2024-09-11 20:30:50 +01:00
</item>
{% endfor %}
</channel>
</rss>