baseURL = "https://example.org/" languageCode = "en-US" title = "Your Website Name" enableRobotsTXT = true # Copy this line to your project's hugo.toml [frontmatter] # {{ .Date }} will look for publishDate or aliases first, fallback to date date = ["publishdate", "pubdate", "published", "date"] # EXAMPLE: multilingual English-German site with content/en & content/de directories; English as default defaultContentLanguage = "en" defaultContentLanguageInSubdir = true disableDefaultLanguageRedirect = false [languages] [languages.de] contentDir = "content/de" languageCode = "de-DE" languageName = "Deutsch" weight = 2 [[languages.de.menus.main]] identifier = "home" name = "Startseite" pageRef = "/" weight = 10 [[languages.de.menus.main]] identifier = "about" name = "Über mich" pageRef = "/about/" weight = 20 [[languages.de.menus.main]] identifier = "search" name = "Suche" pageRef = "/search/" weight = 20 [languages.en] contentDir = "content/en" languageCode = "en-US" languageName = "English" weight = 1 [menus] [[menus.main]] identifier = "home" name = "Home" pageRef = "/" weight = 10 [[menus.main]] identifier = "about" name = "About" pageRef = "/about" weight = 20 [[menus.main]] identifier = "search" name = "Search" pageRef = "/search" weight = 30 [outputs] # Copy outputs configuration to your project's hugo.toml home = ["html", "json", "rss"] section = ["html", "rss"] taxonomy = ["html"] term = ["html"] [params] # For displaying a logo, adjust to your file's name in your project's hugo.toml. Otherwise the theme uses title instead # logo = "/logo.svg" [params.author] name = "Your Name" email = "your@email.com" # Place portrait under static/images if you want to display a small image under the title of your homepage # portrait = "/images/my-portrait.jpg" # Structure your social media profiles like this in your hugo.toml # [[params.socials]] # name = "Twitter" # url = "https://twitter.com/yourhandle" # icon = "/socials/twitter.svg"