diff --git a/config/filters/index.js b/config/filters/index.js index c003ff2f..a814e5b9 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -68,6 +68,17 @@ export default { return tagMap[url] || '' }, + // posts + filterByPostType: (posts, postType) => { + if (postType === 'featured') return posts.reverse().filter(post => post.data.featured === true).splice(0, 3) + return posts.splice(0, 5) + }, + truncateByWordCount: (text, wordCount) => { + const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/); + if (words.length > wordCount) return `
${words.slice(0, wordCount).join(' ')}...
` + return text + }, + // authors authorLookup: (url) => { if (!url) return null diff --git a/package.json b/package.json index 9badee2b..0ce6383a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "12.9.11", + "version": "13.0.0", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/base.liquid b/src/_includes/base.liquid index afa81880..e1aff073 100644 --- a/src/_includes/base.liquid +++ b/src/_includes/base.liquid @@ -14,8 +14,7 @@