-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
76 lines (71 loc) · 1.9 KB
/
mkdocs.yml
File metadata and controls
76 lines (71 loc) · 1.9 KB
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
site_name: CodedCactus
site_description: A blog about programming, technology, and software development.
site_url: https://codedcactus.github.io/
repo_url: https://github.com/codedcactus
theme:
name: materialx
topbar_style: primary # glass primary accent
palette:
- scheme: slate # dark by default
primary: teal
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
- scheme: default
primary: teal
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
font:
text: Inter
code: Roboto Mono
icon:
repo: fontawesome/brands/github
logo: material/cactus
favicon: assets/favicon_dark.svg
features:
- navigation.indexes
- navigation.tabs
- header.autohide
- content.code.copy
- toc.integrate
nav:
- Home: index.md
- Blog:
- blog/index.md
- Tags: tags.md
plugins:
- privacy
- optimize
- search
- glightbox
- blog:
blog_dir: blog
blog_toc: true
archive_pagination_per_page: 10
categories_pagination_per_page: 10
- tags:
pagination_per_page: 10
- recently-updated:
limit: 2 # Limit the number of docs displayed
exclude: # List of excluded files (support unix shell-style wildcards)
- index.md # Exclude specific file
- '*/index.md' # Exclude all index.md files in any subfolders
- tags.md
- 'archive'
# - blog/* # Exclude all files in blog folder, including subfolders
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/codedcactus
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.blocks.caption
- admonition
- pymdownx.details
- pymdownx.superfences
copyright: |
© 2026 <a href="https://github.com/codedcactus" target="_blank" rel="noopener">CodedCactus</a>