Skip to content

Commit

Permalink
Update hugo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
BrainDeadAnarch authored Jul 14, 2024
1 parent 2264240 commit 067a7e6
Showing 1 changed file with 103 additions and 1 deletion.
104 changes: 103 additions & 1 deletion hugo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
baseURL = 'https://archivesserver.github.io'
languageCode = 'en-us'
title = 'My New Hugo Site'
title = 'Archives Server'

[module]
[[module.imports]]
Expand All @@ -9,3 +9,105 @@ title = 'My New Hugo Site'
[[module.imports]]
path = "github.com/gohugoio/hugo-mod-bootstrap-scss/v5"
disable = false

[params]

[params.social]
github = "https://github.com/ArchivesServer/archivesserver.github.io" # YOUR_GITHUB_ID or YOUR_GITHUB_URL
# twitter = "" # YOUR_TWITTER_ID
# instagram = "colinwilson" # YOUR_INSTAGRAM_ID
# rss = true # show rss icon with link

[params.docs] # Parameters for the /docs 'template'
title = "Lotus Docs Example Site" # default html title for documentation pages/sections

# pathName = "docs" # path name for documentation site | default "docs"

# themeColor = "cyan" # (optional) - Set theme accent colour. Options include: blue (default), green, red, yellow, emerald, cardinal, magenta, cyan

darkMode = true # enable dark mode option? default false

prism = true # enable syntax highlighting via Prism

prismTheme = "solarized-light" # (optional) - Set theme for PrismJS. Options include: lotusdocs (default), solarized-light, twilight, lucario

# gitinfo
# repoURL = "https://github.com/colinwilson/lotusdocs.dev" # Git repository URL for your site [support for GitHub, GitLab, and BitBucket]
# repoBranch = "release"
# editPage = true # enable 'Edit this page' feature - default false
# lastMod = true # enable 'Last modified' date on pages - default false
# lastModRelative = true # format 'Last modified' time as relative - default true

sidebarIcons = true # enable sidebar icons? default false
breadcrumbs = true # default is true
backToTop = true # enable back-to-top button? default true

# ToC
# toc = true # enable table of contents? default is true
# tocMobile = true # enable table of contents in mobile view? default is true
# scrollSpy = true # enable scrollspy on ToC? default is true

# front matter
# descriptions = true # enable front matter descriptions under content title?
# titleIcon = true # enable front matter icon title prefix? default is false

# content navigation
# navDesc = true # include front matter descriptions in Prev/Next navigation cards
# navDescTrunc = 30 # Number of characters by which to truncate the Prev/Next descriptions

# listDescTrunc = 100 # Number of characters by which to truncate the list card description

# Link behaviour
# intLinkTooltip = true # Enable a tooltip for internal links that displays info about the destination? default false
# extLinkNewTab = false # Open external links in a new Tab? default true
# logoLinkURL = "" # Set a custom URL destination for the top header logo link.

[params.analytics] # Parameters for Analytics (Google, Plausible)
# plausibleURL = "/docs/s" # (or set via env variable HUGO_PARAM_ANALYTICS_plausibleURL)
# plausibleAPI = "/docs/s" # optional - (or set via env variable HUGO_PARAM_ANALYTICS_plausibleAPI)
# plausibleDomain = "" # (or set via env variable HUGO_PARAM_ANALYTICS_plausibleDomain)

# [params.feedback]
# enabled = true
# emoticonTpl = true
# eventDest = ["plausible","google"]
# emoticonEventName = "Feedback"
# positiveEventName = "Positive Feedback"
# negativeEventName = "Negative Feedback"
# positiveFormTitle = "What did you like?"
# negativeFormTitle = "What went wrong?"
# successMsg = "Thank you for helping to improve Lotus Docs' documentation!"
# errorMsg = "Sorry! There was an error while attempting to submit your feedback!"
# positiveForm = [
# ["Accurate", "Accurately describes the feature or option."],
# ["Solved my problem", "Helped me resolve an issue."],
# ["Easy to understand", "Easy to follow and comprehend."],
# ["Something else"]
# ]
# negativeForm = [
# ["Inaccurate", "Doesn't accurately describe the feature or option."],
# ["Couldn't find what I was looking for", "Missing important information."],
# ["Hard to understand", "Too complicated or unclear."],
# ["Code sample errors", "One or more code samples are incorrect."],
# ["Something else"]
# ]

[menu]
[[menu.primary]]
name = "Docs"
url = "docs/"
identifier = "docs"
weight = 10

# [[menu.primary]]
# name = "Showcase"
# url = "/showcase"
# identifier = "showcase"
# weight = 20

# [[menu.primary]]
# name = "Community"
# url = "https://github.com/colinwilson/lotusdocs/discussions"
# identifier = "community"
# weight = 30

0 comments on commit 067a7e6

Please sign in to comment.