I am using Jekyll for some static site templates and I have a folder of product html pages which I want to be bundled into the root site/ folder rather than into a site/products folder.
example below with just 2 product pages:
src folder
- src/products/123.html
- src/products/146.html
output to site
- site/123.html
- site/146.html
Is there an easy way to do this?
Additionally would there be an easy way to append products- to each file in this folder?
- site/product-123.html
- site/product-146.html