aboutsummaryrefslogtreecommitdiffhomepage
path: root/mkdocs.yml
blob: 2d4704cf40fc2b1a06454d76c1a0f01bbd62b6b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Project information
site_name: Homer
site_url: https://bastienwirtz.github.io/homer/

# Repository
repo_name: bastienwirtz/homer
repo_url: https://github.com/bastienwirtz/homer
edit_uri: ""

# Stylesheet
extra_css:
  - stylesheets/styles.css

# Theme
theme:
  logo: images/logo.png
  name: material
  icon:
    repo: fontawesome/brands/github
  palette:
    - media: "(prefers-color-scheme: light)" 
      scheme: default
      primary: blue
      accent: blue
      toggle:
        icon: material/brightness-4
        name: Switch to dark mode
    - media: "(prefers-color-scheme: dark)" 
      scheme: slate
      primary: blue
      accent: blue
      toggle:
        icon: material/brightness-7
        name: Switch to light mode
  features:
    - content.code.annotate
    - navigation.indexes
    - navigation.sections
    - navigation.top
    - navigation.tracking
    - search.highlight
    - search.share
    - search.suggest
    - toc.follow

# Copyright - name for footer text
copyright: Homer dashboard

# Socials
extra:
  social:
    - icon: fontawesome/brands/github
      link: https://github.com/bastienwirtz/homer
    - icon: fontawesome/brands/gitter
      link: https://gitter.im/homer-dashboard/community
    - icon: fontawesome/brands/docker
      link: https://hub.docker.com/r/b4bz/homer

# Extensions
markdown_extensions:
  - abbr
  - admonition
  - attr_list
  - def_list
  - footnotes
  - meta
  - md_in_html
  - toc:
      permalink: true
  - pymdownx.highlight:
      anchor_linenums: true
  - pymdownx.inlinehilite
  - pymdownx.snippets
  - pymdownx.superfences

# Page tree
nav:
  - Home: index.md
  - Configuration: configuration.md
  - Custom services: customservices.md
  - Tips & tricks: tips-and-tricks.md
  - Development: development.md
  - Troubleshooting: troubleshooting.md