-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
61 lines (60 loc) · 1.69 KB
/
mkdocs.yml
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
site_name: EZAuth
site_description: EZAuth is a high performance self-hosted and fully customizable authentication service
use_directory_urls: True
repo_url: https://github.com/JohnGrubba/ezauth
nav:
- Home: index.md
- Information: information.md
- Getting Started:
- Installation / Setup: getting-started/setup.md
- Configuration:
- Configuration File: configuration/configuration.md
- E-Mail Templates: configuration/email_templates.md
- Internal API: internal.md
- Advanced:
- Advanced E-Mail Templating: advanced/email_templates.md
- Further Customization: advanced/further_custom.md
- OAuth: advanced/oauth.md
- SSL / HTTPS: advanced/ssl.md
- Extensions: advanced/extensions.md
theme:
name: material
logo: "ezauth_logo.png"
features:
- content.code.annotate
- search.share
- content.code.copy
- navigation.top
- navigation.footer
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: blue
toggle:
icon: material/weather-sunny
name: Switch to system preference
markdown_extensions:
- attr_list
- admonition
- footnotes
- codehilite:
guess_lang: false
- toc:
permalink: true
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tilde