fix: feed cleanup
This commit is contained in:
parent
7133b3d589
commit
94f77a46dd
7 changed files with 13 additions and 10 deletions
|
@ -2,7 +2,7 @@
|
|||
layout: null
|
||||
permalink: /feeds/books
|
||||
---
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/books"
|
||||
title:"Books • Cory Dransfeldt"
|
||||
description:"Books I'm currently reading."
|
||||
|
|
|
@ -3,7 +3,7 @@ layout: null
|
|||
permalink: /feeds/posts
|
||||
---
|
||||
{%- assign posts = collections.posts | reverse -%}
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/posts"
|
||||
title:"Cory Dransfeldt"
|
||||
description:"Posts from my site."
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
layout: null
|
||||
permalink: /feeds/follow
|
||||
---
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/follow"
|
||||
title:"Follow • Cory Dransfeldt"
|
||||
description:"My activity from around the web."
|
||||
|
|
|
@ -2,11 +2,12 @@
|
|||
layout: null
|
||||
permalink: /feeds/links
|
||||
---
|
||||
{% render "partials/feeds/content.liquid"
|
||||
{%- assign links = collections.links | reverse -%}
|
||||
{% render "partials/feeds/rss.liquid"
|
||||
permalink:"/feeds/links"
|
||||
title:"Links • Cory Dransfeldt"
|
||||
description:"Links I've shared."
|
||||
data:collections.links
|
||||
updated:collections.links[0].date
|
||||
data:links
|
||||
updated:links[0].date
|
||||
site:site
|
||||
%}
|
Reference in a new issue