github.com/google/cloudprober@v0.11.3/docs/themes/hugo-material-docs/exampleSite/config.toml (about) 1 baseurl = "https://example.org/" 2 languageCode = "en-us" 3 title = "Material Docs" 4 theme = "hugo-material-docs" 5 metadataformat = "yaml" 6 canonifyurls = true 7 # Enable Google Analytics by entering your tracking id 8 googleAnalytics = "" 9 10 [params] 11 # General information 12 author = "Digitalcraftsman" 13 description = "A material design theme for documentations." 14 copyright = "Released under the MIT license" 15 16 # Repository 17 provider = "GitHub" 18 repo_url = "https://github.com/digitalcraftsman/hugo-material-docs" 19 20 version = "1.0.0" 21 logo = "images/logo.png" 22 favicon = "" 23 24 permalink = "#" 25 26 # Custom assets 27 custom_css = [] 28 custom_js = [] 29 30 # Syntax highlighting theme 31 highlight_css = "" 32 33 [params.palette] 34 primary = "red" 35 accent = "teal" 36 37 [params.font] 38 text = "Ubuntu" 39 code = "Ubuntu Mono" 40 41 42 [social] 43 twitter = "" 44 github = "digitalcraftsman" 45 email = "hello@email.com" 46 47 48 [[menu.main]] 49 name = "Material" 50 url = "/" 51 weight = 0 52 53 [[menu.main]] 54 name = "Getting started" 55 url = "getting-started/" 56 weight = 10 57 58 [[menu.main]] 59 name = "Adding content" 60 url = "adding-content/" 61 weight = 20 62 63 [[menu.main]] 64 name = "Roadmap" 65 url = "roadmap/" 66 weight = 30 67 68 [[menu.main]] 69 name = "License" 70 url = "license/" 71 weight = 40 72 73 74 [blackfriday] 75 smartypants = true 76 fractions = true 77 smartDashes = true 78 plainIDAnchors = true