2020-07-16 22:31:39 +02:00
|
|
|
---
|
|
|
|
template: overrides/main.html
|
|
|
|
---
|
|
|
|
|
|
|
|
# Creating your site
|
|
|
|
|
|
|
|
After you've [installed][1] Material for MkDocs, you can bootstrap your project
|
|
|
|
documentation using the `mkdocs` executable. Go to the directory where you want
|
|
|
|
your project to be located and enter:
|
|
|
|
|
|
|
|
``` sh
|
|
|
|
mkdocs new .
|
|
|
|
```
|
|
|
|
|
|
|
|
If you're running Material for MkDocs from within Docker, use:
|
|
|
|
|
|
|
|
=== "Unix"
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run --rm -it -v ${PWD}:/docs squidfunk/mkdocs-material new .
|
|
|
|
```
|
|
|
|
|
|
|
|
=== "Windows"
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run --rm -it -v "%cd%":/docs squidfunk/mkdocs-material new .
|
|
|
|
```
|
|
|
|
|
|
|
|
This will create the following structure:
|
|
|
|
|
|
|
|
```
|
2020-07-21 18:39:27 +02:00
|
|
|
.
|
2020-07-16 22:31:39 +02:00
|
|
|
├─ docs/
|
|
|
|
│ └─ index.md
|
|
|
|
└─ mkdocs.yml
|
|
|
|
```
|
|
|
|
|
2020-07-17 13:08:27 +02:00
|
|
|
[1]: getting-started.md
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
### Minimal configuration
|
|
|
|
|
|
|
|
Depending on your [installation method][2], you can now add the following lines
|
|
|
|
to `mkdocs.yml` in your project root. If you installed Material for MkDocs using
|
|
|
|
`pip` or `docker`, add:
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
theme:
|
|
|
|
name: material
|
|
|
|
```
|
|
|
|
|
|
|
|
If you cloned Material for MkDocs from GitHub, add:
|
|
|
|
|
|
|
|
``` yaml
|
|
|
|
theme:
|
|
|
|
name: null
|
|
|
|
custom_dir: mkdocs-material/material
|
|
|
|
```
|
|
|
|
|
|
|
|
### Advanced configuration
|
|
|
|
|
|
|
|
Material for MkDocs comes with a lot of configuration options. The _guides_
|
|
|
|
section explains in great detail how to configure and customize colors, fonts,
|
|
|
|
icons and much more:
|
|
|
|
|
2020-07-21 16:01:22 +02:00
|
|
|
* [Changing the colors][3]
|
2020-07-16 22:31:39 +02:00
|
|
|
* [Changing the fonts][4]
|
|
|
|
* [Changing the language][5]
|
2020-07-21 16:01:22 +02:00
|
|
|
* [Changing the logo and icons][6]
|
|
|
|
* [Setting up navigation][7]
|
|
|
|
* [Setting up site search][8]
|
2020-07-22 09:54:17 +02:00
|
|
|
* [Setting up site analytics][9]
|
2020-07-22 13:37:14 +02:00
|
|
|
* [Adding social links][10]
|
|
|
|
* [Adding a git repository][11]
|
2020-07-20 15:18:09 +02:00
|
|
|
* [Adding a comment system][12]
|
2020-07-22 13:37:14 +02:00
|
|
|
<!-- * [Adding an announcement bar][13] -->
|
2020-07-21 16:01:22 +02:00
|
|
|
<!-- * [Adding a landing page][14] -->
|
2020-07-16 22:31:39 +02:00
|
|
|
|
2020-07-17 13:08:27 +02:00
|
|
|
[2]: getting-started.md#installation
|
2020-07-21 16:01:22 +02:00
|
|
|
[3]: setup/changing-the-colors.md
|
|
|
|
[4]: setup/changing-the-fonts.md
|
|
|
|
[5]: setup/changing-the-language.md
|
|
|
|
[6]: setup/changing-the-logo-and-icons.md
|
|
|
|
[7]: setup/setting-up-navigation.md
|
|
|
|
[8]: setup/setting-up-site-search.md
|
2020-07-22 09:54:17 +02:00
|
|
|
[9]: setup/setting-up-site-analytics.md
|
2020-07-22 13:37:14 +02:00
|
|
|
[10]: setup/adding-social-links.md
|
|
|
|
[11]: setup/adding-a-git-repository.md
|
2020-07-21 16:01:22 +02:00
|
|
|
[12]: setup/adding-a-comment-system.md
|
2020-07-22 13:37:14 +02:00
|
|
|
<!-- [13]: setup/adding-an-announcement-bar.md -->
|
2020-07-21 16:01:22 +02:00
|
|
|
<!--[14]: setup/adding-a-landing-page.md-->
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
## Previewing as you write
|
|
|
|
|
|
|
|
MkDocs includes a live preview server, so you can preview your changes as you
|
|
|
|
write your documentation. The server will automatically rebuild the site upon
|
|
|
|
saving. Start it with:
|
|
|
|
|
|
|
|
```
|
|
|
|
mkdocs serve
|
|
|
|
```
|
|
|
|
|
|
|
|
If you're running Material for MkDocs from within Docker, use:
|
|
|
|
|
|
|
|
=== "Unix"
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run --rm -it -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material
|
|
|
|
```
|
|
|
|
|
|
|
|
=== "Windows"
|
|
|
|
|
|
|
|
```
|
|
|
|
docker run --rm -it -p 8000:8000 -v "%cd%":/docs squidfunk/mkdocs-material
|
|
|
|
```
|
|
|
|
|
2020-07-20 15:18:09 +02:00
|
|
|
Point your browser to [localhost:8000][15] and you should see:
|
2020-07-16 22:31:39 +02:00
|
|
|
|
2020-07-20 15:18:09 +02:00
|
|
|
[![Creating your site][16]][15]
|
2020-07-16 22:31:39 +02:00
|
|
|
|
2020-07-20 15:18:09 +02:00
|
|
|
[15]: http://localhost:8000
|
2020-07-21 16:01:22 +02:00
|
|
|
[16]: assets/creating-your-site.png
|
2020-07-16 22:31:39 +02:00
|
|
|
|
|
|
|
## Building your site
|
|
|
|
|
|
|
|
When you're finished editing, you can build a static site from your Markdown
|
|
|
|
files with:
|
|
|
|
|
|
|
|
```
|
|
|
|
mkdocs build
|
|
|
|
```
|
|
|
|
|
|
|
|
The contents of this directory make up your project documentation. There's no
|
|
|
|
need for operating a database or server, as it is completely self-contained.
|
2020-07-20 15:18:09 +02:00
|
|
|
The site can be hosted on [GitHub Pages][17], [GitLab Pages][18], a CDN of your
|
2020-07-16 22:31:39 +02:00
|
|
|
choice or your private web space.
|
|
|
|
|
2020-07-20 15:18:09 +02:00
|
|
|
[17]: publishing-your-site.md#github-pages
|
|
|
|
[18]: publishing-your-site.md#gitlab-pages
|