summaryrefslogtreecommitdiff
path: root/examples/blog-multiple-authors/src
diff options
context:
space:
mode:
authorGravatar Fred K. Schott <fkschott@gmail.com> 2021-07-21 17:39:14 -0700
committerGravatar GitHub <noreply@github.com> 2021-07-21 17:39:14 -0700
commite31e276781227826a7d1a1d3cc70dfb45c617d9d (patch)
treee03100d7de4f1bed2c5663475cd5ec30372726dc /examples/blog-multiple-authors/src
parent5549f28157b7fddcd12af4b2ddb5923267c140ce (diff)
downloadastro-e31e276781227826a7d1a1d3cc70dfb45c617d9d.tar.gz
astro-e31e276781227826a7d1a1d3cc70dfb45c617d9d.tar.zst
astro-e31e276781227826a7d1a1d3cc70dfb45c617d9d.zip
get build-all passing (#795)
Diffstat (limited to 'examples/blog-multiple-authors/src')
-rw-r--r--examples/blog-multiple-authors/src/pages/$posts.astro11
1 files changed, 0 insertions, 11 deletions
diff --git a/examples/blog-multiple-authors/src/pages/$posts.astro b/examples/blog-multiple-authors/src/pages/$posts.astro
index 13cff23df..d135beff0 100644
--- a/examples/blog-multiple-authors/src/pages/$posts.astro
+++ b/examples/blog-multiple-authors/src/pages/$posts.astro
@@ -23,17 +23,6 @@ export function createCollection() {
posts: paginate(sortedPosts, {pageSize: 2}),
}
},
- rss: {
- title: 'Don’s Blog',
- description: 'An example blog on Astro',
- customData: `<language>en-us</language>`,
- item: (item) => ({
- title: item.title,
- description: item.description,
- link: item.url,
- pubDate: item.date,
- }),
- }
};
}