How to Add a Page¶
1. Create a Markdown file¶
Example:
docs/projects/new-project.md
2. Add a title¶
# New Project
Notes go here.
3. Add it to mkdocs.yml¶
Example:
nav:
- Projects:
- New Project: projects/new-project.md
4. Preview locally¶
mkdocs serve
Then open:
http://127.0.0.1:8000/
5. Build the site¶
mkdocs build
The finished website appears in the site/ folder.