This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
90 lines (81 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Project information
site_name: Microsoft IoT Workshop
site_url: https://microsoft.github.io/hack-workshop-iot/
site_author: Microsoft
site_description: >-
Learn to build an IoT device to detect dog breeds using Azure!
# Repository
repo_name: microsoft/hack-workshop-iot
repo_url: https://github.com/microsoft/hack-workshop-iot
copyright: Copyright © Microsoft
# Project structure
docs_dir: goals
# Customizations & theme
extra_css:
- assets/stylesheets/extra.css
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/microsoft
name: Microsoft on GitHub
- icon: fontawesome/brands/linkedin
link: https://linkedin.com/in/Microsoft/
name: Microsoft on LinkedIn
- icon: fontawesome/brands/twitter
link: https://twitter.com/Microsoft
name: Microsoft on Twitter
tos:
- link: https://privacy.microsoft.com/
name: Privacy
- link: https://www.microsoft.com/en-us/legal/terms-of-use
name: Terms of Use
- link: https://github.com/microsoft/hack-workshop-iot/blob/main/LICENSE
name: License
theme:
name: material
custom_dir: theme
features:
- navigation.indexes
- navigation.instant
- navigation.expand
- navigation.top
- toc.integrate
font: false
logo: assets/images/8_BIT.png
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: teal
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/weather-sunny
name: Switch to light mode
# Extensions
markdown_extensions:
- admonition
- attr_list
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets
- smarty
- toc:
permalink: True
# Plugins
plugins:
- include-markdown
# Navigation
nav:
- Overview: 'index.md'
- 'Goals':
- 'set-up-pi.md'
- 'set-up-pc-mac.md'
- 'train-model.md'
- 'set-up-iot-central.md'
- 'deploy-device-code.md'