diff options
| author | Arne Rief <riearn@proton.me> | 2025-09-01 21:57:30 +0200 |
|---|---|---|
| committer | Arne Rief <riearn@proton.me> | 2025-09-01 21:57:30 +0200 |
| commit | ade244c72af62827c4c30151404abf755597f243 (patch) | |
| tree | 1d6c5c3b24912ab5e5665bad06bb07b1f43c77ac /hugo.toml | |
| parent | dac4024abcfea76f14522a84bee4b7258c37b72d (diff) | |
Search & socials
Diffstat (limited to 'hugo.toml')
| -rw-r--r-- | hugo.toml | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -33,9 +33,32 @@ enableRobotsTXT = true # Copy this line to your project's hugo.toml pageRef = "/tags" weight = 40 +[outputs] # Copy outputs configuration to your project's hugo.toml + home = ["html", "json", "rss"] + section = ["html", "rss"] + taxonomy = ["html"] + term = ["html"] + [params] - # Set logo to empty string in your project's hugo.toml if you want to display site.Title instead + # In your project's hugo.toml, adjust logo to your file's name or set empty string to display site.Title instead logo = "/logo.svg" + [params.author] name = "Your Name" email = "your@email.com" + + # Replace with your actual social media profiles in your hugo.toml + [[params.socials]] + name = "Twitter" + url = "https://twitter.com/yourhandle" + icon = "/socials/twitter.svg" + + [[params.socials]] + name = "GitHub" + url = "https://github.com/yourhandle" + icon = "/socials/github.svg" + + [[params.socials]] + name = "LinkedIn" + url = "https://linkedin.com/in/yourhandle" + icon = "/socials/linkedin.svg" |
