Understand the structure of the theme’s setup to create content for your website.
Theme’s content structure
1
2
3
4
5
6
7
8
9
10
11
12
13
| .
├── ...
├── content # Hosts all Markdown content
│ ├── articles # Contains the list of markdown files for notes/posts
│ │ ├── article-1.md
│ │ ├── article-2.md
│ │ └── article-3.md
│ └── portfolio # List of portfolio projects or case studies
│ ├── project-1.md
│ └── project-2.md
├── data # Test files (alternatively `spec` or `tests`)
│ └── stack.json # Data used for rendering the list in Stack page
└── ...
|
Note that articles, portfolio and also stack pages require you to create _index.md
inside of it. Refer the exampleSite in theme.
All of these sections are optional and you can decide not to utilize those layouts.
→ Configure Primary Menu