oranda 0.6.5

🎁 generate beautiful landing pages for your projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Additional Pages

If you have extra Markdown files you'd like to link directly as root pages on your generated website, you can
use the `additional_pages` option to list them.

The option's format is an object with the human-readable page name as keys, and the path to the file as values. Example:

```json
{
  "build": {
    "additional_pages": {
      "Another page": "./AnotherFile.md"
    }
  }
}
```