-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
214 lines (200 loc) · 5.41 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
site_name: Energy-GNoME
site_url: https://paolodeangelis.github.io/Energy-GNoME/
site_author: Paolo De Angelis, Giulio Barletta
site_description: >-
A Living Database of Selected Materials for Energy Applications
repo_name: GitHub
repo_url: https://github.com/paolodeangelis/Energy-GNoME/
edit_uri: edit/main/docs/
# copyright: Copyright © 2024 Small Lab
extra_css:
- stylesheets/extra.css
- stylesheets/custom/layout/hero.css
- stylesheets/custom/layout/down_arrow.css
- stylesheets/custom/tooltipster/tippy.css
extra_javascript:
- javascripts/mathjax.js
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
- javascripts/wiki_hover.js
- javascripts/down_arrow.js
theme:
name: material
custom_dir: docs/overrides
logo: assets/img/logo_alt.png
favicon: assets/img/favicon.png
font:
text: Roboto
code: Roboto Mono
icon:
repo: fontawesome/brands/github
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
# icon: material/brightness-auto
icon: material/link
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: gnome
primary: gnome
accent: gnome
toggle:
# icon: material/brightness-7
icon: material/toggle-switch
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: gnome
accent: gnome
toggle:
icon: material/toggle-switch-off
# icon: material/brightness-4
name: Switch to light mode
features:
# - navigation.instant
# - navigation.instant.prefetch
# - navigation.instant.progress
# - navigation.instant.preview
# - navigation.sections
# - navigation.expand
- navigation.top
- navigation.tabs
# - navigation.tabs.sticky
- navigation.home
- navigation.tracking
- navigation.path
- navigation.indexes
- navigation.footer
- toc.follow
# - toc.integrate
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- search.highlight
- search.share
- search.suggest
- header.autohide
- announce.autohide
# - announce.dismiss
hide:
# - announce
watch:
- includes
extra:
homepage: https://paolodeangelis.github.io/Energy-GNoME/
status:
new: Recently added
deprecated: Deprecated
social:
- icon: extra/SMaLL_logo_small
link: https://www.polito.it/small/
- icon: extra/PoliTO_logo
link: https://www.polito.it/
- icon: fontawesome/brands/github
link: https://github.com/paolodeangelis/Energy-GNoME/
- icon: fontawesome/brands/x-twitter
link: https://x.com/small_polito
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/small-lab/
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- md_in_html
- footnotes
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.blocks.caption
- pymdownx.highlight:
use_pygments: true
anchor_linenums: true
pygments_lang_class: true
auto_title: true
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets:
auto_append:
- includes/abbreviations.md
- includes/important_links.md
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.arithmatex:
generic: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
options:
custom_icons:
- docs/overrides/.icons
plugins:
- blog:
blog_dir: blog
- tags:
tags_file: blog/tags.md
- rss:
match_path: blog/posts/.*
date_from_meta:
as_creation: date
categories:
- categories
- tags
- search
- social:
cards_layout: default
cards_layout_options:
background_color: "#44cee0"
color: "#44cee0"
# - glightbox
# - git-authors
- git-revision-date-localized:
type: timeago
timezone: Europe/Rome
locale: en
fallback_to_build_date: false
enable_creation_date: true
- git-committers:
enabled: true
repository: paolodeangelis/Energy-GNoME
branch: main
token: !!python/object/apply:os.getenv ["MKDOCS_GIT_COMMITTERS_APIKEY"]
- minify:
minify_html: true
- mkdocstrings:
default_handler: python
docstring_style: google
handlers:
python:
options:
show_root_heading: true
show_root_toc_entry: true
nav:
- Home: index.md
- Dashboards:
- Database Dashboards: apps/index.md
- Cathodes:
- User guide: apps/cathodes/userguide.md
- Dashboard: apps/cathodes/dashboard.html
- Perovskites:
- User guide: apps/perovskites/userguide.md
- Dashboard: apps/perovskites/dashboard.html
- Thermoelectrics:
- User guide: apps/thermoelectrics/userguide.md
- Dashboard: apps/thermoelectrics/dashboard.html
- About the Database: about_db/index.md
- Documentation:
- Overview: docs/index.md
- Getting started: docs/getting-started.md
- CLI: docs/cli.md
- Modules:
- Datasets: docs/modules/dataset.md
- Contribute: contribute/index.md
- How to cite: ./how_to_cite.md
- Status: ./status.md
- Blog:
- blog/index.md
- Tags: blog/tags.md