feat: formatted + cleaned up feeds
This commit is contained in:
parent
74279cf2d5
commit
7934cc3581
16 changed files with 367 additions and 33 deletions
|
@ -5,8 +5,8 @@ permalink: "/feeds/all.json"
|
|||
---
|
||||
{% render "partials/feeds/json.liquid"
|
||||
permalink:"/feeds/all"
|
||||
title:"Cory Dransfeldt: all activity"
|
||||
description:"All of the posts and activity from my site."
|
||||
title:"All activity / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:collections.allContent
|
||||
updated:collections.allContent[0].date
|
||||
site:site
|
||||
|
|
|
@ -6,8 +6,8 @@ permalink: "/feeds/books.json"
|
|||
{%- assign bookData = books.all | bookStatus: 'finished' | bookSortDescending -%}
|
||||
{% render "partials/feeds/json.liquid"
|
||||
permalink:"/feeds/books"
|
||||
title:"Cory Dransfeldt: books"
|
||||
description:"Books I'm currently reading."
|
||||
title:"Books / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:bookData
|
||||
updated:bookData[0].date
|
||||
site:site
|
||||
|
|
|
@ -5,8 +5,8 @@ permalink: "/feeds/posts.json"
|
|||
---
|
||||
{% render "partials/feeds/json.liquid"
|
||||
permalink:"/feeds/posts"
|
||||
title:"Cory Dransfeldt"
|
||||
description:"Posts from my site."
|
||||
title:"Posts / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:posts
|
||||
updated:posts[0].date
|
||||
site:site
|
||||
|
|
|
@ -5,8 +5,8 @@ permalink: "/feeds/links.json"
|
|||
---
|
||||
{% render "partials/feeds/json.liquid"
|
||||
permalink:"/feeds/links"
|
||||
title:"Cory Dransfeldt: links"
|
||||
description:"Links I've liked."
|
||||
title:"Links / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:links
|
||||
updated:links[0].date
|
||||
site:site
|
||||
|
|
|
@ -5,8 +5,8 @@ permalink: "/feeds/movies.json"
|
|||
---
|
||||
{% render "partials/feeds/json.liquid"
|
||||
permalink:"/feeds/movies"
|
||||
title:"Cory Dransfeldt: movies"
|
||||
description:"Movies I've watched recently."
|
||||
title:"Movies / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:movies.recentlyWatched
|
||||
updated:movies.recentlyWatched[0].lastWatched
|
||||
site:site
|
||||
|
|
|
@ -5,8 +5,8 @@ permalink: "/feeds/all"
|
|||
---
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/all"
|
||||
title:"Cory Dransfeldt: all activity"
|
||||
description:"All of the posts and activity from my site."
|
||||
title:"All activity / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:collections.allContent
|
||||
updated:collections.allContent[0].date
|
||||
site:site
|
||||
|
|
|
@ -6,8 +6,8 @@ permalink: "/feeds/books"
|
|||
{%- assign bookData = books.all | bookStatus: 'finished' | bookSortDescending -%}
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/books"
|
||||
title:"Cory Dransfeldt: books"
|
||||
description:"Books I'm currently reading."
|
||||
title:"Books / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:bookData
|
||||
updated:bookData[0].date
|
||||
site:site
|
||||
|
|
|
@ -5,8 +5,8 @@ permalink: "/feeds/posts"
|
|||
---
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/posts"
|
||||
title:"Cory Dransfeldt"
|
||||
description:"Posts from my site."
|
||||
title:"Posts / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:posts
|
||||
updated:posts[0].date
|
||||
site:site
|
||||
|
|
|
@ -5,8 +5,8 @@ permalink: "/feeds/links"
|
|||
---
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/links"
|
||||
title:"Cory Dransfeldt: links"
|
||||
description:"Links I've liked."
|
||||
title:"Links / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:links
|
||||
updated:links[0].date
|
||||
site:site
|
||||
|
|
|
@ -5,8 +5,8 @@ permalink: "/feeds/movies"
|
|||
---
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/movies"
|
||||
title:"Cory Dransfeldt: movies"
|
||||
description:"Movies I've watched recently."
|
||||
title:"Movies / Cory Dransfeldt"
|
||||
description:globals.site_description
|
||||
data:movies.recentlyWatched
|
||||
updated:movies.recentlyWatched[0].lastWatched
|
||||
site:site
|
||||
|
|
Reference in a new issue