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 { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
const feed = new ActivityFeed() const feed = new ActivityFeed()
feed.addSource('atom', 'Blog', 'https://coryd.dev/feed.xml') 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', 'Letterboxd', 'https://letterboxd.com/cdme/rss')
feed.addSource('rss', 'Oku', 'https://oku.club/rss/collection/NvEmF') feed.addSource('rss', 'Oku', 'https://oku.club/rss/collection/NvEmF')
const entries = feed.getEntries() const entries = feed.getEntries()

View file

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

View file

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

View file

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