diff --git a/v2/config.toml b/v2/config.toml index 644bbec..2f86547 100644 --- a/v2/config.toml +++ b/v2/config.toml @@ -1,6 +1,6 @@ baseURL = 'https://blog.hugopoi.net/v2/' publishdir = '../www/v2' -languageCode = 'en-us' +languageCode = 'en-US' defaultLanguageContent = 'en' title = 'HugoPoi Blog' theme = 'cupper-hugo-theme' @@ -9,6 +9,23 @@ theme = 'cupper-hugo-theme' # disqusShortname: yourdiscussshortname enableGitInfo = true +[languages] + [languages.en] + disabled = false + languageCode = 'en-US' + languageDirection = 'ltr' + languageName = 'English' + languageFlag = '🇺🇸' + weight = 0 + [languages.fr] + disabled = false + languageCode = 'fr-FR' + languageDirection = 'ltr' + languageName = 'French' + languageFlag = '🇫🇷' + weight = 1 + + [taxonomies] tag = "tags" diff --git a/v2/content/pages/wishlist/index.fr.md b/v2/content/pages/wishlist/index.fr.md new file mode 100644 index 0000000..ac4d32e --- /dev/null +++ b/v2/content/pages/wishlist/index.fr.md @@ -0,0 +1,20 @@ +--- +title: "Liste de cadeaux" +slug: "wishlist" +date: 2023-12-08T09:33:02+01:00 +toc: true +tags: ["wishlist", "gift", "stuff"] +--- + +Noël, mon anniversaire, je n'ai pas besoin de grand chose mais si vous voulez des idées voici la liste. +Préférez les objets de secondes mains 😉. + +* Chaussure de vélo [Vaude TVL Skoj](https://www.bikester.fr/vaude-tvl-skoj-chaussures-M834524.html) size 44EU, ~100€ +* Liseuse Kobo Clare 2E or Libra 2 ( No Amazon stuff because it's vendor locked ), ~150€ +* Robot multifonction Moulinex / SEB / Electrolux +* Des livres j'aime : SF, Science, Politique, Thriller et cuisine +* Un stylo avec mon nom dessus +* Des ramequins de cuisine hauteur moyenne +* Un caisson étanche 60m GoPro Hero 7 +* Une batterie GoPro Hero 7 + diff --git a/v2/content/pages/wishlist/index.md b/v2/content/pages/wishlist/index.md index b7387ee..e189da6 100644 --- a/v2/content/pages/wishlist/index.md +++ b/v2/content/pages/wishlist/index.md @@ -7,8 +7,13 @@ tags: ["wishlist", "gift", "stuff"] --- Christmas, my birthday, I don't need anything but if you want some ideas of what I like or seek. +Just buy second hand stuff preferably 😉. -* Bike shoose Fisik -* E-Ink Tablet Reader Kobo -* Blender robot +* Bike shoes [Vaude TVL Skoj](https://www.bikester.fr/vaude-tvl-skoj-chaussures-M834524.html) size 44EU, ~100€ +* E-Ink Tablet Reader Kobo Clare 2E or Libra 2 ( No Amazon stuff because it's vendor locked ), ~150€ +* Blender robot Moulinex / SEB / Electrolux * Any books, I like Scifi, Science, Politics, Thriller and Cooking +* A nice pen with my name on it +* Some ramekins for cooking oven usage +* Diving box case for GoPro Hero 7 +* GoPro Hero 7 Batteries diff --git a/v2/layouts/partials/footer.html b/v2/layouts/partials/footer.html new file mode 100644 index 0000000..c54dfab --- /dev/null +++ b/v2/layouts/partials/footer.html @@ -0,0 +1,15 @@ + diff --git a/v2/layouts/partials/language-switcher.html b/v2/layouts/partials/language-switcher.html new file mode 100644 index 0000000..725c40f --- /dev/null +++ b/v2/layouts/partials/language-switcher.html @@ -0,0 +1,17 @@ +{{ if .Site.IsMultiLingual }} + + +{{ end }} + + diff --git a/v2/static/css/cupper-hugo-tweaks.css b/v2/static/css/cupper-hugo-tweaks.css index 61ed164..18188fb 100644 --- a/v2/static/css/cupper-hugo-tweaks.css +++ b/v2/static/css/cupper-hugo-tweaks.css @@ -6,3 +6,10 @@ clip-path: none; border-radius: 0.33em; } + +nav.language-selector { + margin-top: initial; +} +.language-selector li { + display: inline; +}