This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/feeds/links.liquid
2023-05-05 16:08:18 -07:00

23 lines
No EOL
714 B
Text

---
layout: null
permalink: /links.xml
---
{% layout "./_includes/feed-links.liquid" %}
{% block title %}Links • Cory Dransfeldt{% endblock %}
{% block self %}links.xml{% endblock %}
{% block update %}
{{ articles | rssLastUpdatedDate }}{% endblock %}
{% block entries %}
{% assign links = articles | reverse %}
{% for article in articles %}
<entry>
<title>{{ article.content.title | escape }}</title>
<link href="{{article.content.url}}" />
<updated>{{ article.history.feed_dirty_date | date: "%m.%d.%Y" }}</updated>
<id>{{ article.content.id }}</id>
<content type="html">
{{ article.excerpt | escape }}
</content>
</entry>
{% endfor %}
{% endblock %}