~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 &copy; 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 - Home: 23 - index.md 24 - nowpage: now.md 25 - Contact: contact/index.md 26 - PGP and SSH keys: keys/index.md 27 - "All my links": links.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.tabs.link 67 - content.tooltips 68 # - header.autohide 69 # - navigation.expand 70 - navigation.footer 71 - navigation.indexes 72 # - navigation.instant 73 # - navigation.prune 74 - navigation.sections 75 - navigation.tabs 76 # - navigation.tabs.sticky 77 - navigation.top 78 - navigation.tracking 79 - search.highlight 80 - search.share 81 - search.suggest 82 - toc.follow 83 # - toc.integrate 84 palette: 85 - media: "(prefers-color-scheme)" 86 primary: green 87 accent: yellow 88 toggle: 89 icon: material/brightness-auto 90 name: Switch to light mode 91 92 # Palette toggle for light mode 93 - media: "(prefers-color-scheme: light)" 94 scheme: default 95 primary: green 96 accent: yellow 97 toggle: 98 icon: material/brightness-7 99 name: Switch to dark mode 100 101 # Palette toggle for dark mode 102 - media: "(prefers-color-scheme: dark)" 103 scheme: slate 104 primary: green 105 accent: yellow 106 toggle: 107 icon: material/brightness-4 108 name: Switch to light mode 109 110# plugins 111plugins: 112 - social: 113 cards: !ENV [FF_GENERATE_SOCIAL_CARDS, false] 114 - search 115 - redirects: 116 redirect_maps: 117 "user-manual/portfolio.md": "portfolio/index.md" 118 "dni.md": "user-manual/dni.md" 119 "resume.md": "user-manual/resume.md" 120 "blog.md": "https://blog.andreijiroh.dev" 121 "socials.md": "links.md#socials" 122 "communities.md": "portfolio/communities.md" 123 "tildes.md": "portfolio/tildes.md" 124 "projects.md": "portfolio/projects.md" 125 #"contact.md": "contact/index.md" 126 # debugging/bug reporting purposes only, proceed with caution 127 #- info 128 - git-revision-date-localized: 129 enabled: true 130 fallback_to_build_date: true 131 enable_creation_date: true 132 #- git-committers: 133 # enabled: !ENV [FF_GIT_COMMITTERS_API, false] 134 # repository: andreijiroh-dev/website 135 # branch: main 136 # token: !ENV ["MKDOCS_GIT_COMMITTERS_PLUGIN_TOKEN"] 137 - git-authors 138 139# makrdown extensions 140markdown_extensions: 141 - toc: 142 permalink: true 143 title: On this page 144 - pymdownx.highlight: 145 anchor_linenums: true 146 use_pygments: true 147 - pymdownx.superfences 148 - pymdownx.tabbed: 149 alternate_style: true 150 - attr_list 151 - pymdownx.emoji: 152 emoji_index: !!python/name:material.extensions.emoji.twemoji 153 emoji_generator: !!python/name:material.extensions.emoji.to_svg 154 options: 155 custom_icons: 156 - overrides/.icons 157 - footnotes 158 - md_in_html 159 - admonition 160 - abbr 161 - pymdownx.caret 162 - pymdownx.keys 163 - pymdownx.mark 164 - pymdownx.tilde 165 166# extras 167extra: 168 #deployment: staging 169 fediverse_creator_handle: "@ajhalili2006:tilde.zone" 170 # my socials 171 social: 172 # fediverse 173 - icon: fontawesome/brands/mastodon 174 link: https://tilde.zone/@ajhalili2006 175 name: ~ajhalili2006 on tildeverse 176 177 - icon: simple/bluesky 178 link: https://bsky.app/profile/andreijiroh.dev 179 name: ~ajhalili2006 on bsky.app 180 181 # X/Twitter 182 - icon: fontawesome/brands/twitter 183 link: https://twitter.com/ajhalili2006 184 name: ~ajhalili2006 on twitter 185 186 # substack 187 - icon: simple/substack 188 link: https://ajhalili2006.substack.com 189 name: ~ajhalili2006's personal substack 190 191 # git 192 - icon: fontawesome/brands/github 193 link: https://github.com/ajhalili2006 194 name: ~ajhalili2006 on github 195 - icon: fontawesome/brands/gitlab 196 link: https://mau.dev/ajhalili2006 197 name: ~ajhalili2006 on mauinum gitlab instance 198 - icon: simple/sourcehut 199 link: https://sr.ht/~ajhalili2006 200 name: ~ajhalili2006 on sr.ht 201 202 # facebook 203 - icon: fontawesome/brands/facebook 204 link: https://facebook.com/ajhalili2006 205 name: ~ajhalili2006's personal (slash professional profile) facebook account 206 207 # linkedin 208 - icon: fontawesome/brands/linkedin 209 link: https://linkedin.com/in/ajhalili2006 210 name: ~ajhalili2006 on linkedin for employers 211 analytics: 212# provider: plausible 213# property: andreijiroh.eu.org 214# url: "https://analytics.projectsegfau.lt"