You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Use [markdown interlinking](navigation.md#interlinking) between pages.
27
27
3. Create a `mkdocs.toml` file to define [the site navigation](navigation.md#navigation) and other configuration.
28
-
4. Move your markdown pages into a `docs` directory, and [configure the theme](styling.md#themes).
28
+
4. Move your markdown pages into a `docs` directory, and update the config.
29
29
30
30
An example `mkdocs.toml`...
31
31
32
32
```toml
33
33
[mkdocs]
34
34
nav = [
35
-
{path: "README.md", title: "Introduction"},
36
-
{path: "CREDITS.md", title: "Credits"},
35
+
{path="README.md", title="Introduction"},
36
+
{path="CREDITS.md", title="Credits"},
37
37
]
38
38
39
39
[loaders]
@@ -51,5 +51,8 @@ favicon = "📘"
51
51
52
52
Styling adaptations can be kept simple, such as customising the colour scheme, or more comprehensive, such as creating an entirely new theme.
53
53
54
-
1. Modify [the HTML templating](styling.md#templates) to customise the layout.
55
-
2. Override or add [CSS and JavaScript](styling.md#statics) static assets.
54
+
1. Configure the base theme for your project.
55
+
2. Modify [the HTML templating](styling.md#templates) to customise the layout.
56
+
3. Override or add [CSS and JavaScript](styling.md#statics) static assets.
57
+
58
+
Take a look at the [default theme](https://github.com/lovelydinosaur/mkdocs-theme) and the [kelp theme](https://github.com/lovelydinosaur/kelp-theme) for examples of getting started with theming.
2. Use [markdown interlinking](navigation.md#interlinking) between pages.
27
27
3. Create a `mkdocs.toml` file to define [the site navigation](navigation.md#navigation) and other configuration.
28
-
4. Move your markdown pages into a `docs` directory, and [configure the theme](styling.md#themes).
28
+
4. Move your markdown pages into a `docs` directory, and update the config.
29
29
30
30
An example `mkdocs.toml`...
31
31
32
32
```toml
33
33
[mkdocs]
34
34
nav = [
35
-
{path: "README.md", title: "Introduction"},
36
-
{path: "CREDITS.md", title: "Credits"},
35
+
{path="README.md", title="Introduction"},
36
+
{path="CREDITS.md", title="Credits"},
37
37
]
38
38
39
39
[loaders]
@@ -51,5 +51,8 @@ favicon = "📘"
51
51
52
52
Styling adaptations can be kept simple, such as customising the colour scheme, or more comprehensive, such as creating an entirely new theme.
53
53
54
-
1. Modify [the HTML templating](styling.md#templates) to customise the layout.
55
-
2. Override or add [CSS and JavaScript](styling.md#statics) static assets.
54
+
1. Configure the base theme for your project.
55
+
2. Modify [the HTML templating](styling.md#templates) to customise the layout.
56
+
3. Override or add [CSS and JavaScript](styling.md#statics) static assets.
57
+
58
+
Take a look at the [default theme](https://github.com/lovelydinosaur/mkdocs-theme) and the [kelp theme](https://github.com/lovelydinosaur/kelp-theme) for examples of getting started with theming.
0 commit comments