I'm using Jekyll to create a page and the docs suggest that Jekyll has the option to create pages in the root directory, or to create new directories for new pages.
From http://jekyllrb.com/docs/pages/
Where you put HTML files for pages depends on how you want the pages to work. There are two main ways of creating pages:
- Place named HTML files for each page in your site’s root folder.
- Create a folder in the site’s root for each page, and place an index.html file in each page folder.
project
-- _includes
-- _site
---- about
------ index.html
----assets
------ css
------ img
------ js
--assets
---- css
---- img
---- js
-- _config.yml
-- about.html
-- index.html
How do I configure Jekyll to create pages in the root directory?