~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion]
andreijiroh.dev
zensical
mkdocs-material
website
1# This is the root configuration for my personal website and also the default
2# for userpage at ~vern.
3
4# basics
5site_name: ~ajhalili2006
6site_url: https://andreijiroh.dev/
7site_dir: public
8site_author: Andrei Jiroh Halili
9copyright: >
10 Copyright © 2022-present - Andrei Jiroh Halili and contributors, licensed under the
11 <a href="https://creativecommons.org/licenses/by-sa/4.0">CC BY-SA 4.0</a> license.
12docs_dir: markdown
13use_directory_urls: true
14
15# repos
16repo_url: https://mau.dev/andreijiroh-dev/website
17edit_uri: edit/main/markdown
18repo_name: source code
19
20# navbar
21nav:
22 - Profile README: index.md
23 - Meta:
24 - nowpage: now.md
25 - "All my links": links.md
26 - Contact: contact/index.md
27 - PGP and SSH keys: keys/index.md
28 - Legal:
29 - Security policy: security.md
30 - User manual: https://wiki.andreijiroh.dev/garden/user-manual
31 - Portfolio:
32 - portfolio/index.md
33 - Projects: portfolio/projects.md
34 - Communities: portfolio/communities.md
35 - Tildes: portfolio/tildes.md
36 - Resume: user-manual/resume.md
37 - Blog: "https://blog.andreijiroh.dev"
38
39# theme settings
40theme:
41 name: material
42 custom_dir: overrides
43 favicon: assets/images/favicon.png
44 icon:
45 logo: octicons/person-16
46 repo: material/gitlab
47 admonition:
48 note: octicons/tag-16
49 abstract: octicons/checklist-16
50 info: octicons/info-16
51 tip: octicons/squirrel-16
52 success: octicons/check-16
53 question: octicons/question-16
54 warning: octicons/alert-16
55 failure: octicons/x-circle-16
56 danger: octicons/zap-16
57 bug: octicons/bug-16
58 example: octicons/beaker-16
59 quote: octicons/quote-16
60 features:
61 - announce.dismiss
62 - content.action.edit
63 - content.action.view
64 - content.code.annotate
65 - content.code.copy
66 # - content.code.select
67 # - content.footnote.tooltips
68 # - content.tabs.link
69 - content.tooltips
70 # - header.autohide
71 # - navigation.expand
72 - navigation.footer
73 - navigation.indexes
74 # - navigation.instant
75 # - navigation.instant.prefetch
76 # - navigation.instant.progress
77 # - navigation.prune
78 - navigation.sections
79 - navigation.tabs
80 # - navigation.tabs.sticky
81 - navigation.top
82 - navigation.tracking
83 - search.highlight
84 - search.share
85 - search.suggest
86 - toc.follow
87 # - toc.integrate
88 palette:
89 - media: "(prefers-color-scheme)"
90 primary: green
91 accent: yellow
92 toggle:
93 icon: material/brightness-auto
94 name: Switch to light mode
95
96 # Palette toggle for light mode
97 - media: "(prefers-color-scheme: light)"
98 scheme: default
99 primary: green
100 accent: yellow
101 toggle:
102 icon: material/brightness-7
103 name: Switch to dark mode
104
105 # Palette toggle for dark mode
106 - media: "(prefers-color-scheme: dark)"
107 scheme: slate
108 primary: green
109 accent: yellow
110 toggle:
111 icon: material/brightness-4
112 name: Switch to light mode
113
114# plugins
115plugins:
116 - social:
117 cards: !ENV [FF_GENERATE_SOCIAL_CARDS, false]
118 - search
119 - redirects:
120 redirect_maps:
121 "user-manual/portfolio.md": "portfolio/index.md"
122 "dni.md": "https://wiki.andreijiroh.dev/garden/user-manual/dni/"
123 "resume.md": "user-manual/resume.md"
124 "blog.md": "https://blog.andreijiroh.dev"
125 "socials.md": "links.md#socials"
126 "communities.md": "portfolio/communities.md"
127 "tildes.md": "portfolio/tildes.md"
128 "projects.md": "portfolio/projects.md"
129 "user-manual/index.md": "https://wiki.andreijiroh.dev/garden/user-manual/"
130 "user-manual/boundaries.md": "https://wiki.andreijiroh.dev/garden/user-manual/boundaries/"
131 "user-manual/communications.md": "https://wiki.andreijiroh.dev/garden/user-manual/communications/"
132 "user-manual/dni.md": "https://wiki.andreijiroh.dev/garden/user-manual/dni/"
133 "user-manual/encrypted-communications.md": "https://wiki.andreijiroh.dev/garden/user-manual/encrypted-communications"
134 # debugging/bug reporting purposes only, proceed with caution
135 #- info
136 - git-revision-date-localized:
137 enabled: true
138 fallback_to_build_date: true
139 enable_creation_date: true
140 #- git-committers:
141 # enabled: !ENV [FF_GIT_COMMITTERS_API, false]
142 # repository: andreijiroh-dev/website
143 # branch: main
144 # token: !ENV ["MKDOCS_GIT_COMMITTERS_PLUGIN_TOKEN"]
145 - git-authors
146
147# makrdown extensions
148markdown_extensions:
149 - toc:
150 permalink: true
151 title: On this page
152 - pymdownx.highlight:
153 anchor_linenums: true
154 use_pygments: true
155 - pymdownx.superfences
156 - pymdownx.tabbed:
157 alternate_style: true
158 - attr_list
159 - pymdownx.emoji:
160 emoji_index: !!python/name:material.extensions.emoji.twemoji
161 emoji_generator: !!python/name:material.extensions.emoji.to_svg
162 options:
163 custom_icons:
164 - overrides/.icons
165 - footnotes
166 - md_in_html
167 - admonition
168 - abbr
169 - pymdownx.caret
170 - pymdownx.keys
171 - pymdownx.mark
172 - pymdownx.tilde
173
174# extras
175extra:
176 #deployment: staging
177 fediverse_creator_handle: "@ajhalili2006:tilde.zone"
178 # my socials
179 social:
180 # fediverse
181 - icon: fontawesome/brands/mastodon
182 link: https://tilde.zone/@ajhalili2006
183 name: ~ajhalili2006 on tildeverse
184
185 - icon: simple/bluesky
186 link: https://bsky.app/profile/andreijiroh.dev
187 name: ~ajhalili2006 on bsky.app
188
189 # X/Twitter
190 - icon: fontawesome/brands/twitter
191 link: https://twitter.com/ajhalili2006
192 name: ~ajhalili2006 on twitter
193
194 # substack
195 - icon: simple/substack
196 link: https://ajhalili2006.substack.com
197 name: ~ajhalili2006's personal substack
198
199 # git
200 - icon: fontawesome/brands/github
201 link: https://github.com/ajhalili2006
202 name: ~ajhalili2006 on github
203 - icon: fontawesome/brands/gitlab
204 link: https://gitlab.com/ajhalili2006
205 name: ~ajhalili2006 on GitLab SaaS instance
206 - icon: simple/sourcehut
207 link: https://sr.ht/~ajhalili2006
208 name: ~ajhalili2006 on sr.ht
209
210 # facebook
211 - icon: fontawesome/brands/facebook
212 link: https://facebook.com/ajhalili2006
213 name: ~ajhalili2006's personal (slash professional profile) facebook account
214
215 # linkedin
216 - icon: fontawesome/brands/linkedin
217 link: https://linkedin.com/in/ajhalili2006
218 name: ~ajhalili2006 on linkedin for employers
219 analytics:
220# provider: plausible
221# property: andreijiroh.eu.org
222# url: "https://analytics.projectsegfau.lt"