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

20 lines
635 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[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
{% block entries %}
{% assign links = articles | reverse %}
{% for link in links %}
<entry>
<title>{{ link.description | escape }}</title>
<link href="{{link.href}}" />
<updated>{{ link.time | date: "%m.%d.%Y" }}</updated>
<id>{{ link.href }}</id>
<content type="html"></content>
</entry>
{% endfor %}
{% endblock %}