fix: feed data

This commit is contained in:
Cory Dransfeldt 2023-05-05 16:28:07 -07:00
parent 9c84159c79
commit ea01261952
No known key found for this signature in database
4 changed files with 13 additions and 13 deletions

View file

@ -2,6 +2,7 @@ module.exports = async function () {
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
const feed = new ActivityFeed()
feed.addSource('atom', 'Blog', 'https://coryd.dev/feed.xml')
feed.addSource('atom', 'Link', 'https://coryd.dev/links.xml')
feed.addSource('rss', 'Letterboxd', 'https://letterboxd.com/cdme/rss')
feed.addSource('rss', 'Oku', 'https://oku.club/rss/collection/NvEmF')
const entries = feed.getEntries()

View file

@ -2,17 +2,16 @@
<?xml-stylesheet href="/assets/atom-feed-links.xsl" type="text/xsl" media="screen"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>
{% block title %}All posts • Cory Dransfeldt{% endblock %}
{% block title %}Links • Cory Dransfeldt{% endblock %}
</title>
<link href="{{ pkg.homepage }}/feeds/{% block self %}articles.xml{% endblock %}" rel="self" />
<link href="{{ pkg.homepage }}/{% block page %}articles/{% endblock %}" />
<link href="{{ pkg.homepage }}/links.xml" rel="self" />
<link href="{{ pkg.homepage }}" />
<link rel="hub" href="http://pubsubhubbub.superfeedr.com/" />
<updated>
{% block update %}
{{ collections.entries | rssLastUpdatedDate }}{% endblock %}
</updated>
<id>{{ site.url }}/{% block id %}posts/{% endblock %}
</id>
<id>{{ site.url }}</id>
<author>
<name>{{ site.author }}</name>
<email>{{ site.email }}</email>

View file

@ -4,8 +4,8 @@
<title>
{% block title %}All posts • Cory Dransfeldt{% endblock %}
</title>
<link href="{{ pkg.homepage }}/feeds/{% block self %}articles.xml{% endblock %}" rel="self" />
<link href="{{ pkg.homepage }}/{% block page %}articles/{% endblock %}" />
<link href="{{ pkg.homepage }}/feed.xml" rel="self" />
<link href="{{ pkg.homepage }}" />
<link rel="hub" href="http://pubsubhubbub.superfeedr.com/" />
<updated>
{% block update %}

View file

@ -9,14 +9,14 @@ permalink: /links.xml
{{ articles | rssLastUpdatedDate }}{% endblock %}
{% block entries %}
{% assign links = articles | reverse %}
{% for article in articles %}
{% for link in links %}
<entry>
<title>{{ article.content.title | escape }}</title>
<link href="{{article.content.url}}" />
<updated>{{ article.publication_date | date: "%m.%d.%Y" }}</updated>
<id>{{ article.content.id }}</id>
<title>{{ link.content.title | escape }}</title>
<link href="{{link.content.url}}" />
<updated>{{ link.publication_date | date: "%m.%d.%Y" }}</updated>
<id>{{ link.content.link }}</id>
<content type="html">
{{ article.excerpt | escape }}
{{ link.excerpt | escape }}
</content>
</entry>
{% endfor %}