mykiwi/mykiwi.blogpublic Fork 0
main
Commits
Clone
git clone https://git.rickub.com/mykiwi/mykiwi.blog.git
git clone ssh://git@rickub.com/mykiwi/mykiwi.blog.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

hugo.toml · 109 lines · 3.2 KBTOML Blame HistoryRaw
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago1title = 'mykiwi.blog'
2disableKinds = ['taxonomy', 'term']
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 11h ago3enableRobotsTXT = 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 7h ago8# 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 11h ago14defaultContentLanguage = "en"
15
Adapt urls & remove email ab57bea Romain Gautier 4h ago16[permalinks]
17[permalinks.page]
18posts = "/:year/:month/:day/:slug/"
19
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 11h ago20[languages.en]
21baseURL = "https://mykiwi.blog/"
22label = "English"
23locale = "en-us"
24weight = 1
25
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago26[languages.es]
27baseURL = "https://es.mykiwi.blog/"
28label = "Español"
29locale = "es-es"
30weight = 2
31
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 11h ago32[languages.fr]
33baseURL = "https://fr.mykiwi.blog/"
34label = "Français"
35locale = "fr-fr"
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago36weight = 3
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 11h ago37
38[languages.pt]
39baseURL = "https://pt.mykiwi.blog/"
40label = "Português"
41locale = "pt-br"
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago42weight = 4
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 11h ago43
44[languages.ja]
45baseURL = "https://ja.mykiwi.blog/"
46label = "日本語"
47locale = "ja-jp"
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago48weight = 5
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago49
50[params]
51# Optional: overrides the <meta name="description"> tag with different text
52# than the colophon bio below. Leave unset (as here) and the meta tag is
53# derived automatically from params.profile.bio, stripped down to plain text.
54# description = "..."
55
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 11h ago56# Blocks search engines from indexing the site (adds <meta name="robots"
57# content="noindex, nofollow"> to every page and a Disallow: / robots.txt) -
58# flip to false (or delete the line) once the site is ready to be found.
59noindex = true
60
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago61[params.profile]
62# Drop a square photo at blog/assets/images/avatar.jpg (or change this path)
63# to have it show up; the colophon quietly skips itself if the file is missing.
64avatar = "images/avatar.jpg"
Add SRI fingerprinting, inline avatar blurhash, and a language switcher icon 51380a7 Romain Gautier 5h ago65avatarAlt = "mykiwi's avatar"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago66firstName = "Romain"
67lastName = "GAUTIER"
68atprotoHandle = 'mykiwi.dev'
69# Markdown, rendered as-is in the colophon (links work: [text](url)). Also
70# the source for the <meta name="description"> tag, unless params.description
71# above is set to override it.
Add SRI fingerprinting, inline avatar blurhash, and a language switcher icon 51380a7 Romain Gautier 5h ago72bio = "I'm a software engineer, passionate about technology, sharing knowledge and open source like #PHP, #Symfony, #Docker, #Dagger, #Nix, atproto:// and ATmosphere. Also [🐕️ & 🐈️](https://instagram.com/apy.leon \"Pictures of Apy & Léon\") dad."
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago73
74[[params.profile.links]]
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago75key = "Tweets on ATmosphere"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago76value = "@mykiwi.dev"
77url = "https://bsky.app/profile/mykiwi.dev"
78
79[[params.profile.links]]
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago80key = "Tweets on Fediverse"
81value = "@mykiwi@mamot.fr"
82url = "https://mamot.fr/@mykiwi"
83
84[[params.profile.links]]
85key = "Tweets on Twitter"
Add SRI fingerprinting, inline avatar blurhash, and a language switcher icon 51380a7 Romain Gautier 5h ago86value = "@my_kiwi"
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago87url = "https://x.com/mykiwi"
88
89[[params.profile.links]]
90key = "Code on ATmosphere"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago91value = "@mykiwi.dev"
92url = "https://tangled.org/mykiwi.dev"
93
94[[params.profile.links]]
Add Spanish (es) language support 479f7e2 Romain Gautier 7h ago95key = "Code on GitHub"
96value = "@mykiwi"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 15h ago97url = "https://github.com/mykiwi"
98
99[markup.highlight]
100noClasses = false
101
102[markup.goldmark.renderer]
103unsafe = true
104
105[markup.goldmark.parser]
106autoHeadingID = true
107
108[markup.goldmark.parser.attribute]
109title = true