Site Structure

When you create a new Aurora site, some folders and files are created by default.

Below is a list of those files.


├── _site # where your generated site is stored
│   └── index.html
├── assets # where to store your CSS, JS, and images
├── config.py # your Aurora configuration
└── pages # any page in this directory is generated
    ├── _data # store JSON / CSV files to be used in generating pages
    ├── _layouts # page layouts
    ├── posts # blog posts
    └── templates # store single pages to generate
        └── index.html

See Also