| Add hugo skeleton 373f934 Romain Gautier yesterday | 1 | baseURL = 'https://example.org/' |
| 2 | locale = 'en-us' |
| Port fzakaria.com design to Hugo and add a homepage profile 1bdbd06 Romain Gautier 19h ago | 3 | title = 'mykiwi.blog' |
| 4 | disableKinds = ['taxonomy', 'term'] |
| 5 | |
| 6 | [params] |
| 7 | # Optional: overrides the <meta name="description"> tag with different text |
| 8 | # than the colophon bio below. Leave unset (as here) and the meta tag is |
| 9 | # derived automatically from params.profile.bio, stripped down to plain text. |
| 10 | # description = "..." |
| 11 | |
| 12 | [params.profile] |
| 13 | # Drop a square photo at blog/assets/images/avatar.jpg (or change this path) |
| 14 | # to have it show up; the colophon quietly skips itself if the file is missing. |
| 15 | avatar = "images/avatar.jpg" |
| 16 | avatarAlt = "mykiwi's GitHub avatar" |
| 17 | firstName = "Romain" |
| 18 | lastName = "GAUTIER" |
| 19 | atprotoHandle = 'mykiwi.dev' |
| 20 | # Markdown, rendered as-is in the colophon (links work: [text](url)). Also |
| 21 | # the source for the <meta name="description"> tag, unless params.description |
| 22 | # above is set to override it. |
| 23 | 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." |
| 24 | |
| 25 | [[params.profile.links]] |
| 26 | key = "bluesky" |
| 27 | value = "@mykiwi.dev" |
| 28 | url = "https://bsky.app/profile/mykiwi.dev" |
| 29 | |
| 30 | [[params.profile.links]] |
| 31 | key = "tangled" |
| 32 | value = "@mykiwi.dev" |
| 33 | url = "https://tangled.org/mykiwi.dev" |
| 34 | |
| 35 | [[params.profile.links]] |
| 36 | key = "github" |
| 37 | value = "mykiwi" |
| 38 | url = "https://github.com/mykiwi" |
| 39 | |
| 40 | [[params.profile.links]] |
| 41 | key = "email" |
| 42 | value = "hi@mykiwi.blog" |
| 43 | url = "mailto:you@example.com" |
| 44 | |
| 45 | [markup.highlight] |
| 46 | noClasses = false |
| 47 | |
| 48 | [markup.goldmark.renderer] |
| 49 | unsafe = true |
| 50 | |
| 51 | [markup.goldmark.parser] |
| 52 | autoHeadingID = true |
| 53 | |
| 54 | [markup.goldmark.parser.attribute] |
| 55 | title = true |