đŸŒŗFile Structure

All Liquid files live somewhere inside the views folder.

Since Page Templates are called Layouts in platformOS, this is their name in the file structure.

Templates (Pages & Email) in a Siteglide site should be stored in a templates sub-folder and named by their unique ID in Siteglide.

Pages can be anywhere in the pages folder. They can have any file name and use any subfolders you like. By default their URL will be relative to the pages folder, but you can change this using the slug in YAML, or by changing the URL in the Siteglide Admin.

marketplace_builder/
├── views/
│   ├── layouts/
│   │   └── templates/
│   │       ├── 1.liquid
│   │       └── 2.liquid
│   ├── pages/
│   │   ├── system_pages/
│   │   │   └── 404.liquid
│   │   ├── home.liquid
│   │   └── about.liquid
│   └── partials/

We have pre-builtSystem Pages available to use out of the box.

Last updated