summaryrefslogtreecommitdiff
path: root/hugo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'hugo.toml')
-rw-r--r--hugo.toml25
1 files changed, 24 insertions, 1 deletions
diff --git a/hugo.toml b/hugo.toml
index 8120249..7f7cea2 100644
--- a/hugo.toml
+++ b/hugo.toml
@@ -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"