diff --git a/src/_includes/feed-links.liquid b/src/_includes/feed-links.liquid new file mode 100644 index 00000000..1a9d1dc9 --- /dev/null +++ b/src/_includes/feed-links.liquid @@ -0,0 +1,22 @@ + + + + + {% block title %}All posts • Cory Dransfeldt{% endblock %} + + + + + + {% block update %} + {{ collections.entries | rssLastUpdatedDate }}{% endblock %} + + {{ site.url }}/{% block id %}posts/{% endblock %} + + + {{ site.author }} + {{ site.email }} + + {{ eleventy.generator }} + {% block entries %}{% endblock %} + \ No newline at end of file diff --git a/src/assets/atom-feed-links.xsl b/src/assets/atom-feed-links.xsl new file mode 100644 index 00000000..2a7c7ddd --- /dev/null +++ b/src/assets/atom-feed-links.xsl @@ -0,0 +1,80 @@ + + + + + + + + + + <xsl:value-of select="atom:feed/atom:title"/> + + + + + + + + + + +
+
+ +
+
+

+ + + + Feed preview • links +

+

Recently read and favorited links sourced from the Matter API.

+

+
+
    + +
+
+
+
+

This is a web feed, also known as an RSS or Atom feed.

+

Subscribe by copying the URL from the address bar into your newsreader.

+
+ Visit About Feeds to get started with newsreaders and subscribing. It's free. +
+
+
+ + +
+ +
  • + + + + + + +
  • +
    +
    diff --git a/src/assets/atom-feed.xsl b/src/assets/atom-feed.xsl index 3a24cfbc..3ec37e67 100644 --- a/src/assets/atom-feed.xsl +++ b/src/assets/atom-feed.xsl @@ -22,7 +22,7 @@ xmlns:atom="http://www.w3.org/2005/Atom"> - + @@ -63,7 +63,7 @@ xmlns:atom="http://www.w3.org/2005/Atom">

    This is a web feed, also known as an RSS or Atom feed.

    Subscribe by copying the URL from the address bar into your newsreader.

    - Visit About Feeds to get started with newsreaders and subscribing. It’s free. + Visit About Feeds to get started with newsreaders and subscribing. It's free. @@ -73,7 +73,7 @@ xmlns:atom="http://www.w3.org/2005/Atom">

    - + diff --git a/src/feeds/links.liquid b/src/feeds/links.liquid new file mode 100644 index 00000000..d54bbd3b --- /dev/null +++ b/src/feeds/links.liquid @@ -0,0 +1,23 @@ +--- +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 %} + + {{ article.content.title | escape }} + + {{ article.history.feed_dirty_date | date: "%m.%d.%Y" }} + {{ article.content.id }} + + {{ article.excerpt | escape }} + + + {% endfor %} +{% endblock %} \ No newline at end of file diff --git a/src/follow-feed.11ty.js b/src/follow-feed.11ty.js index 3b61a3a7..48338e53 100644 --- a/src/follow-feed.11ty.js +++ b/src/follow-feed.11ty.js @@ -10,6 +10,7 @@ module.exports = class { 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')