Genja uses a project structure as shown below. The _pages, _posts, and _templates directories along with the genja.toml config file are used by Genja to generate the website.
my-project/
├── _pages/
├── _posts/
├── _templates/
├── mysite/
├── genja.toml
└── README.md
Instead of putting the Genja directories and config file at the top-level of the project, consider using a genja directory that contains all the Genja files/directories. Something like this:
my-project/
├── genja/
│ ├── pages/
│ ├── posts/
│ ├── templates/
│ └── config.toml
├── mysite/
└── README.md
Genja uses a project structure as shown below. The
_pages,_posts, and_templatesdirectories along with thegenja.tomlconfig file are used by Genja to generate the website.Instead of putting the Genja directories and config file at the top-level of the project, consider using a
genjadirectory that contains all the Genja files/directories. Something like this: