diff options
author | 2021-07-21 17:39:14 -0700 | |
---|---|---|
committer | 2021-07-21 17:39:14 -0700 | |
commit | e31e276781227826a7d1a1d3cc70dfb45c617d9d (patch) | |
tree | e03100d7de4f1bed2c5663475cd5ec30372726dc /examples/blog-multiple-authors/src | |
parent | 5549f28157b7fddcd12af4b2ddb5923267c140ce (diff) | |
download | astro-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.astro | 11 |
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, - }), - } }; } |