-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
94 lines (72 loc) · 2.42 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
91
92
93
94
site_name: Lab Manual - Humphries Lab
site_url: https://humphries-lab.github.io/Lab-Manual
edit_uri: https://github.com/Humphries-Lab/Lab-Manual/edit/main/content
docs_dir: content # Default: docs
nav:
- Introduction: index.md
- practical.md
- roles.md
- principles.md
- policies.md
- collaborators.md
- funders.md
- reading.md
# The following is not really the copyright notice.
# It's rather a sort-of hack to get custom text in the footer.
# The 'spans' are to have the spaces inside be non-breaking -- i.e. so that
# the text inside stays on one line; this is mostly relevant on mobile.
# (The non-breaking ('nowrap') rule is defined in `content/style/custom.css`)
copyright: >
<span>Mark Humphries</span> ·
<span>University of Nottingham</span> ·
<a href="https://github.com/Humphries-Lab/Lab-Manual#version-history">
<span>Version history</span></a> ·
Correspondence:
<a href="mailto:[email protected]">
theme:
name: material
custom_dir: theme-override
features:
- navigation.footer # next/prev page in footer
- content.action.edit # Icon link next to H1, to edit on GH
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
name: Switch to dark mode
icon: material/brightness-7
primary: teal
accent: teal
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
name: Switch to light mode
icon: material/brightness-4
primary: teal
accent: teal
extra_css:
- style/custom.css
extra:
# Remove the "Made with Material for MkDocs" link
# (they can read that in the repo)
generator: false
social:
- icon: fontawesome/brands/github
link: https://github.com/Humphries-Lab/Lab-Manual
- icon: fontawesome/brands/twitter
link: https://twitter.com/markdhumphries
- icon: fontawesome/solid/house
link: https://www.humphries-lab.org/
plugins:
- search
- git-revision-date-localized
markdown_extensions:
# Makes (sub)headings linkable
- toc:
permalink: '#'
# This enables the `!!! note` sidebars
- admonition
# Auto-converts "x" → “x”, -- → –, etc
# (https://python-markdown.github.io/extensions/smarty)
- smarty