feat: resolve timing with producing follow feed

This commit is contained in:
Cory Dransfeldt 2024-05-17 11:59:00 -07:00
parent ca31cd4f0e
commit c37fc2f1a3
No known key found for this signature in database
10 changed files with 133 additions and 193 deletions

View file

@ -1,13 +1,13 @@
---
layout: null
eleventyExcludeFromCollections: true
permalink: /feeds/share-follow.json
permalink: /feeds/follow.json
---
{% render "partials/feeds/json.liquid"
permalink:'/feeds/share-follow.json'
permalink:'/feeds/follow.json'
title:'Follow • Cory Dransfeldt'
data:follow.posts
updated:follow.posts[0].date_published
data:collections.followContent
updated:collections.followContent[0].date
site:site
tagMap:collections.tagMap
%}

13
src/feeds/follow.liquid Normal file
View file

@ -0,0 +1,13 @@
---
layout: null
eleventyExcludeFromCollections: true
permalink: /feeds/follow
---
{% render "partials/feeds/rss.liquid"
permalink:"/feeds/follow"
title:"Follow • Cory Dransfeldt"
description:"My activity from around the web (ok, mainly this site)."
data:collections.followContent
updated:collections.followContent[0].date
site:site
%}