| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 1 | title = 'mykiwi.blog' |
| 2 | disableKinds = ['taxonomy', 'term'] |
| Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 14h ago | 3 | enableRobotsTXT = true |
| 4 | |
| 5 | # Multihost: every language below sets its own baseURL, which is what tells |
| 6 | # Hugo to build each one as a fully separate site (own absolute URLs, no |
| 7 | # /fr/ path prefix) instead of one shared build with a language-prefixed |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 8 | # path. `hugo` then writes public/en/, public/fr/, public/pt/, public/ja/, |
| 9 | # public/es/ - each folder is a complete site meant to be deployed as the |
| 10 | # docroot of its own (sub)domain (public/en/ -> mykiwi.blog, public/fr/ -> |
| 11 | # fr.mykiwi.blog, etc). A content file with no language suffix (e.g. |
| 12 | # posts/hello-world.md) is the English version; translations sit alongside |
| 13 | # it as posts/hello-world.fr.md, .pt.md, .ja.md, .es.md. |
| Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 14h ago | 14 | defaultContentLanguage = "en" |
| 15 | |
| 16 | [languages.en] |
| 17 | baseURL = "https://mykiwi.blog/" |
| 18 | label = "English" |
| 19 | locale = "en-us" |
| 20 | weight = 1 |
| 21 | |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 22 | [languages.es] |
| 23 | baseURL = "https://es.mykiwi.blog/" |
| 24 | label = "Español" |
| 25 | locale = "es-es" |
| 26 | weight = 2 |
| 27 | |
| Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 14h ago | 28 | [languages.fr] |
| 29 | baseURL = "https://fr.mykiwi.blog/" |
| 30 | label = "Français" |
| 31 | locale = "fr-fr" |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 32 | weight = 3 |
| Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 14h ago | 33 | |
| 34 | [languages.pt] |
| 35 | baseURL = "https://pt.mykiwi.blog/" |
| 36 | label = "Português" |
| 37 | locale = "pt-br" |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 38 | weight = 4 |
| Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 14h ago | 39 | |
| 40 | [languages.ja] |
| 41 | baseURL = "https://ja.mykiwi.blog/" |
| 42 | label = "日本語" |
| 43 | locale = "ja-jp" |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 44 | weight = 5 |
| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 45 | |
| 46 | [params] |
| 47 | # Optional: overrides the <meta name="description"> tag with different text |
| 48 | # than the colophon bio below. Leave unset (as here) and the meta tag is |
| 49 | # derived automatically from params.profile.bio, stripped down to plain text. |
| 50 | # description = "..." |
| 51 | |
| Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 14h ago | 52 | # Blocks search engines from indexing the site (adds <meta name="robots" |
| 53 | # content="noindex, nofollow"> to every page and a Disallow: / robots.txt) - |
| 54 | # flip to false (or delete the line) once the site is ready to be found. |
| 55 | noindex = true |
| 56 | |
| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 57 | [params.profile] |
| 58 | # Drop a square photo at blog/assets/images/avatar.jpg (or change this path) |
| 59 | # to have it show up; the colophon quietly skips itself if the file is missing. |
| 60 | avatar = "images/avatar.jpg" |
| 61 | avatarAlt = "mykiwi's GitHub avatar" |
| 62 | firstName = "Romain" |
| 63 | lastName = "GAUTIER" |
| 64 | atprotoHandle = 'mykiwi.dev' |
| 65 | # Markdown, rendered as-is in the colophon (links work: [text](url)). Also |
| 66 | # the source for the <meta name="description"> tag, unless params.description |
| 67 | # above is set to override it. |
| 68 | bio = "I'm a software engineer, passionate about technology, sharing knowledge and open source like #PHP, #Symfony, #Docker, #Dagger, #Nix and atproto:// Also [🐕️ & 🐈️](https://instagram.com/apy.leon \"Pictures of Apy & Léon\") dad." |
| 69 | |
| 70 | [[params.profile.links]] |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 71 | key = "Tweets on ATmosphere" |
| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 72 | value = "@mykiwi.dev" |
| 73 | url = "https://bsky.app/profile/mykiwi.dev" |
| 74 | |
| 75 | [[params.profile.links]] |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 76 | key = "Tweets on Fediverse" |
| 77 | value = "@mykiwi@mamot.fr" |
| 78 | url = "https://mamot.fr/@mykiwi" |
| 79 | |
| 80 | [[params.profile.links]] |
| 81 | key = "Tweets on Twitter" |
| 82 | value = "@mykiwi" |
| 83 | url = "https://x.com/mykiwi" |
| 84 | |
| 85 | [[params.profile.links]] |
| 86 | key = "Code on ATmosphere" |
| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 87 | value = "@mykiwi.dev" |
| 88 | url = "https://tangled.org/mykiwi.dev" |
| 89 | |
| 90 | [[params.profile.links]] |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 91 | key = "Code on GitHub" |
| 92 | value = "@mykiwi" |
| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 93 | url = "https://github.com/mykiwi" |
| 94 | |
| 95 | [[params.profile.links]] |
| 96 | key = "email" |
| 97 | value = "hi@mykiwi.blog" |
| Add Spanish (es) language support 479f7e2 Romain Gautier 10h ago | 98 | url = "mailto:hi@mykiwi.blog" |
| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 99 | |
| 100 | [markup.highlight] |
| 101 | noClasses = false |
| 102 | |
| 103 | [markup.goldmark.renderer] |
| 104 | unsafe = true |
| 105 | |
| 106 | [markup.goldmark.parser] |
| 107 | autoHeadingID = true |
| 108 | |
| 109 | [markup.goldmark.parser.attribute] |
| 110 | title = true |