Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add collection page for Recycling taxonomy, PW #772

Merged
merged 2 commits into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions sites/packworld.com/server/routes/website-section.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,15 @@ module.exports = (app) => {
},
})));

app.get('/recycling', asyncRoute(async (_, res) => res.marko(collections, {
name: 'Recycling',
description: 'Read up on the latest news, insights, and solutions that address the complex and timely issue of recycling. From topics surrounding advanced recycling to MRFs, recycle-ready packaging, and package circularity, dive into everything we cover in the vast topic of recycling.',
queryParams: {
// Recycling
includeTaxonomyIds: [3201419],
},
})));

app.get('/packexpo', asyncRoute(async (_, res) => res.marko(collections, {
name: 'PACK EXPO',
description: '',
Expand Down