fix: missing rss items

This commit is contained in:
Cory Dransfeldt 2024-05-02 19:51:06 -07:00
parent 214201e76e
commit 64f42b8973
No known key found for this signature in database
3 changed files with 5 additions and 4 deletions

View file

@ -59,8 +59,9 @@ export default {
// posts // posts
filterByPostType: (posts, postType) => { filterByPostType: (posts, postType) => {
if (postType === 'featured') return posts.reverse().filter(post => post.data.featured === true).splice(0, 3) const postData = [...posts]
return posts.splice(0, 5) if (postType === 'featured') return postData.reverse().filter(post => post.data.featured === true).splice(0, 3)
return postData.splice(0, 5)
}, },
truncateByWordCount: (text, wordCount) => { truncateByWordCount: (text, wordCount) => {
const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/); const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/);

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "13.6.1", "version": "13.6.2",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -3,7 +3,7 @@ layout: null
eleventyExcludeFromCollections: true eleventyExcludeFromCollections: true
permalink: /feeds/posts permalink: /feeds/posts
--- ---
{%- assign posts = collections.posts -%} {%- assign posts = collections.posts | reverse -%}
{% render "partials/feeds/rss.liquid" {% render "partials/feeds/rss.liquid"
permalink:"/feeds/posts" permalink:"/feeds/posts"
title:"Cory Dransfeldt" title:"Cory Dransfeldt"