daux.io/docs/01_Features/Landing_page.md

22 regels
685 B
Markdown

2015-12-12 00:22:43 +01:00
If you want to create a beautiful landing page for your project, create a `_index.md` file in the root of the `/docs` folder. This file will then be used to create a landing page. You can also add a tagline and image to this page using the config file like this:
```json
{
2020-04-25 14:44:43 +02:00
"title": "Daux.io",
"tagline": "The Easiest Way To Document Your Project",
"image": "app.png"
2015-12-12 00:22:43 +01:00
}
```
> The image can be a local or remote image. By default, the path is relative to the root of the documentation.
To disable the automatic landing page, you can set `auto_landing` to false in the `html` section of your configuration
```json
{
2020-04-25 14:44:43 +02:00
"html": {
"auto_landing": false
}
}
```