mykiwi/mykiwi.blogpublic Fork 0
8145a2ac9ae8578fa5403ccbfb4b6c464fc65e58
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 · 110 lines · 3.2 KBTOML Blame HistoryRaw
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago1title = 'mykiwi.blog'
2disableKinds = ['taxonomy', 'term']
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 18h 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 14h 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 18h ago14defaultContentLanguage = "en"
15
16[languages.en]
17baseURL = "https://mykiwi.blog/"
18label = "English"
19locale = "en-us"
20weight = 1
21
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago22[languages.es]
23baseURL = "https://es.mykiwi.blog/"
24label = "Español"
25locale = "es-es"
26weight = 2
27
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 18h ago28[languages.fr]
29baseURL = "https://fr.mykiwi.blog/"
30label = "Français"
31locale = "fr-fr"
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago32weight = 3
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 18h ago33
34[languages.pt]
35baseURL = "https://pt.mykiwi.blog/"
36label = "Português"
37locale = "pt-br"
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago38weight = 4
Add French/Portuguese/Japanese support, block indexing until launch f8c7bc5 Romain Gautier 18h ago39
40[languages.ja]
41baseURL = "https://ja.mykiwi.blog/"
42label = "日本語"
43locale = "ja-jp"
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago44weight = 5
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago45
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 18h ago52# 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.
55noindex = true
56
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago57[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.
60avatar = "images/avatar.jpg"
Add SRI fingerprinting, inline avatar blurhash, and a language switcher icon 51380a7 Romain Gautier 12h ago61avatarAlt = "mykiwi's avatar"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago62firstName = "Romain"
63lastName = "GAUTIER"
64atprotoHandle = '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.
Add SRI fingerprinting, inline avatar blurhash, and a language switcher icon 51380a7 Romain Gautier 12h ago68bio = "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 22h ago69
70[[params.profile.links]]
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago71key = "Tweets on ATmosphere"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago72value = "@mykiwi.dev"
73url = "https://bsky.app/profile/mykiwi.dev"
74
75[[params.profile.links]]
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago76key = "Tweets on Fediverse"
77value = "@mykiwi@mamot.fr"
78url = "https://mamot.fr/@mykiwi"
79
80[[params.profile.links]]
81key = "Tweets on Twitter"
Add SRI fingerprinting, inline avatar blurhash, and a language switcher icon 51380a7 Romain Gautier 12h ago82value = "@my_kiwi"
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago83url = "https://x.com/mykiwi"
84
85[[params.profile.links]]
86key = "Code on ATmosphere"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago87value = "@mykiwi.dev"
88url = "https://tangled.org/mykiwi.dev"
89
90[[params.profile.links]]
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago91key = "Code on GitHub"
92value = "@mykiwi"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago93url = "https://github.com/mykiwi"
94
95[[params.profile.links]]
96key = "email"
97value = "hi@mykiwi.blog"
Add Spanish (es) language support 479f7e2 Romain Gautier 14h ago98url = "mailto:hi@mykiwi.blog"
Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 22h ago99
100[markup.highlight]
101noClasses = false
102
103[markup.goldmark.renderer]
104unsafe = true
105
106[markup.goldmark.parser]
107autoHeadingID = true
108
109[markup.goldmark.parser.attribute]
110title = true