1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00
mkdocs-material/docs/setup/changing-the-logo-and-icons.md
2021-10-10 17:39:53 +02:00

2.9 KiB

template
overrides/main.html

Changing the logo and icons

When installing Material for MkDocs, you immediately get access to over 8.000 icons ready to be used for customization of specific parts of the theme and/or when writing your documentation in Markdown. Not enough? You can also add additional icons with minimal effort.

Configuration

:octicons-tag-24: 0.1.0 · :octicons-milestone-24: Default: material/library

The logo can be changed to a user-provided image (any type, incl. *.png and *.svg) located in the docs folder, or to any icon bundled with the theme. Add the following lines to mkdocs.yml:

=== ":octicons-image-16: Image"

``` yaml
theme:
  logo: assets/logo.png
```

=== ":octicons-package-16: Icon, bundled"

``` yaml
theme:
  icon:
    logo: material/library
```

Normally, the logo in the header and sidebar links to the homepage of the documentation, which is the same as site_url. This behavior can be changed with the following configuration:

extra:
  homepage: https://example.com

Favicon

:octicons-tag-24: 0.1.0 · :octicons-milestone-24: Default: assets/images/favicon.png

The favicon can be changed to a path pointing to a user-provided image, which must be located in the docs folder. Add the following lines to mkdocs.yml:

theme:
  favicon: images/favicon.png

Customization

Additional icons

In order to use custom icons, extend the theme and create a new folder named .icons in the custom_dir you want to use for overrides. Next, add your *.svg icons into a subfolder of the .icons folder. Let's say you downloaded and unpacked the Bootstrap icon set, and want to add it to your project documentation. The structure of your project should look like this:

.
├─ overrides/
│  └─ .icons/
│     └─ bootstrap/
│        └─ *.svg
└─ mkdocs.yml

Then, add the following lines to mkdocs.yml:

markdown_extensions:
  - pymdownx.emoji:
      emoji_index: !!python/name:materialx.emoji.twemoji
      emoji_generator: !!python/name:materialx.emoji.to_svg
      options:
        custom_icons:
          - overrides/.icons

You can now use all :fontawesome-brands-bootstrap: Bootstrap icons.