mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-29 02:12:05 -05:00
ba45da9d03
32356e4e Fix typo in header of shortcode-templates.md c8f1a2d2 Correct code example for index template function bfa6a55d Escape code fencing ff8b2f99 Fix typos in deployment with wercker tutorial 557c36e8 theme: Merge commit '7fbb4bed25001182bfeb91f79db0f0c1936582ee' 7fbb4bed Squashed 'themes/gohugoioTheme/' changes from 7dd8a302..ca53082d ce31cee0 Add "See Also" config 158cee1b Make the tags into keywords 61600be6 Add a note to the related section 49edb5a2 Relase 0.27.1 c9bbc001 releaser: Add release notes to /docs for release of 0.27.1 213c6c3b Add bugs poster 8b4590cd Add KeyCDN integration tutorial 2b277859 Add tutorial videos to several docs pages 950fef1f Update roadmap to link to the correct milestones page 496f5bf6 Rename relnotes d6f9378d Bump Netlify versions to 0.27 087fde7f Update 0.27 release notes 603f94ae docs: Document Related Content 3790f6a3 releaser: Bump versions for release of 0.27 0948868c releaser: Add release notes to /docs for release of 0.27 git-subtree-dir: docs git-subtree-split: 32356e4eabe357ae914f4d1d59e8ae31ce936723
250 lines
5.2 KiB
TOML
250 lines
5.2 KiB
TOML
baseURL = "https://gohugo.io/"
|
||
paginate = 100
|
||
defaultContentLanguage = "en"
|
||
enableEmoji = true
|
||
# Set the unicode character used for the "return" link in page footnotes.
|
||
footnotereturnlinkcontents = "↩"
|
||
languageCode = "en-us"
|
||
metaDataFormat = "yaml"
|
||
title = "Hugo"
|
||
theme = "gohugoioTheme"
|
||
|
||
googleAnalytics = "UA-7131036-4"
|
||
|
||
pluralizeListTitles = false
|
||
|
||
# We do redirects via Netlify's _redirects file, generated by Hugo (see "outputs" below).
|
||
disableAliases = true
|
||
|
||
|
||
# Highlighting config (Pygments)
|
||
# It is (currently) not in use, but you can do ```go in a content file if you want to.
|
||
pygmentsCodeFences = true
|
||
|
||
# See https://help.farbox.com/pygments.html
|
||
pygmentsStyle = "friendly"
|
||
|
||
[outputs]
|
||
home = [ "HTML", "RSS", "REDIR", "HEADERS" ]
|
||
section = [ "HTML", "RSS"]
|
||
|
||
[mediaTypes]
|
||
[mediaTypes."text/netlify"]
|
||
suffix = ""
|
||
delimiter = ""
|
||
|
||
[outputFormats]
|
||
[outputFormats.REDIR]
|
||
mediatype = "text/netlify"
|
||
baseName = "_redirects"
|
||
isPlainText = true
|
||
notAlternative = true
|
||
[outputFormats.HEADERS]
|
||
mediatype = "text/netlify"
|
||
baseName = "_headers"
|
||
isPlainText = true
|
||
notAlternative = true
|
||
|
||
[related]
|
||
|
||
threshold = 80
|
||
includeNewer = true
|
||
toLower = false
|
||
|
||
[[related.indices]]
|
||
name = "keywords"
|
||
weight = 100
|
||
[[related.indices]]
|
||
name = "date"
|
||
weight = 10
|
||
pattern = "2006"
|
||
|
||
[social]
|
||
twitter = "GoHugoIO"
|
||
|
||
#CUSTOM PARAMS
|
||
[params]
|
||
description = "The world’s fastest framework for building websites"
|
||
## Used for views in rendered HTML (i.e., rather than using the .Hugo variable)
|
||
release = "0.27.1"
|
||
## Setting this to true will add a "noindex" to *EVERY* page on the site
|
||
removefromexternalsearch = false
|
||
## Gh repo for site footer (include trailing slash)
|
||
ghrepo = "https://github.com/gohugoio/hugoDocs/"
|
||
## GH Repo for filing a new issue
|
||
github_repo = "https://github.com/gohugoio/hugo/issues/new"
|
||
### Edit content repo (set to automatically enter "edit" mode; this is good for "improve this page" links)
|
||
ghdocsrepo = "https://github.com/gohugoio/hugoDocs/tree/master/docs"
|
||
## Gitter URL
|
||
gitter = "https://gitter.im/spf13/hugo"
|
||
## Discuss Forum URL
|
||
forum = "https://discourse.gohugo.io/"
|
||
## Google Tag Manager
|
||
gtmid = ""
|
||
|
||
# First one is picked as the Twitter card image if not set on page.
|
||
images = ["images/gohugoio-card.png"]
|
||
|
||
flex_box_interior_classes = "flex-auto w-100 w-40-l mr3 mb3 bg-white ba b--moon-gray nested-copy-line-height"
|
||
|
||
#sidebar_direction = "sidebar_left"
|
||
|
||
# MARKDOWN
|
||
## Configuration for BlackFriday markdown parser: https://github.com/russross/blackfriday
|
||
[blackfriday]
|
||
plainIDAnchors = true
|
||
hrefTargetBlank = true
|
||
angledQuotes = false
|
||
latexDashes = true
|
||
|
||
## As of v0.20, all content files include a default "categories" value that's the same as the section. This was a cheap future-proofing method and should/could be changed accordingly.
|
||
[taxonomies]
|
||
category = "categories"
|
||
|
||
# High level items
|
||
|
||
[[menu.docs]]
|
||
name = "About Hugo"
|
||
weight = 1
|
||
identifier = "about"
|
||
url = "/about/"
|
||
|
||
[[menu.docs]]
|
||
name = "Getting Started"
|
||
weight = 5
|
||
identifier = "getting-started"
|
||
url = "/getting-started/"
|
||
|
||
|
||
[[menu.docs]]
|
||
name = "Themes"
|
||
weight = 15
|
||
identifier = "themes"
|
||
post = "break"
|
||
url = "/themes/"
|
||
|
||
# Core Menus
|
||
|
||
[[menu.docs]]
|
||
name = "Content Management"
|
||
weight = 20
|
||
identifier = "content-management"
|
||
post = "expanded"
|
||
url = "/content-management/"
|
||
|
||
[[menu.docs]]
|
||
name = "Templates"
|
||
weight = 25
|
||
identifier = "templates"
|
||
|
||
url = "/templates/"
|
||
|
||
[[menu.docs]]
|
||
name = "Functions"
|
||
weight = 30
|
||
identifier = "functions"
|
||
url = "/functions/"
|
||
|
||
[[menu.docs]]
|
||
name = "Variables"
|
||
weight = 35
|
||
identifier = "variables"
|
||
url = "/variables/"
|
||
|
||
[[menu.docs]]
|
||
name = "CLI"
|
||
weight = 40
|
||
post = "break"
|
||
identifier = "commands"
|
||
url = "/commands/"
|
||
|
||
|
||
|
||
# LOW LEVEL ITEMS
|
||
|
||
|
||
[[menu.docs]]
|
||
name = "Troubleshooting"
|
||
weight = 60
|
||
identifier = "troubleshooting"
|
||
url = "/troubleshooting/"
|
||
|
||
[[menu.docs]]
|
||
name = "Tools"
|
||
weight = 70
|
||
identifier = "tools"
|
||
url = "/tools/"
|
||
|
||
[[menu.docs]]
|
||
name = "Hosting & Deployment"
|
||
weight = 80
|
||
identifier = "hosting-and-deployment"
|
||
url = "/hosting-and-deployment/"
|
||
|
||
[[menu.docs]]
|
||
name = "Contribute"
|
||
weight = 100
|
||
post = "break"
|
||
identifier = "contribute"
|
||
url = "/contribute/"
|
||
|
||
#[[menu.docs]]
|
||
# name = "Tags"
|
||
# weight = 120
|
||
# identifier = "tags"
|
||
# url = "/tags/"
|
||
|
||
|
||
# [[menu.docs]]
|
||
# name = "Categories"
|
||
# weight = 140
|
||
# identifier = "categories"
|
||
# url = "/categories/"
|
||
|
||
######## QUICKLINKS
|
||
|
||
[[menu.quicklinks]]
|
||
name = "Fundamentals"
|
||
weight = 1
|
||
identifier = "fundamentals"
|
||
url = "/tags/fundamentals/"
|
||
|
||
|
||
|
||
|
||
######## GLOBAL ITEMS TO BE SHARED WITH THE HUGO SITES
|
||
|
||
[[menu.global]]
|
||
name = "News"
|
||
weight = 1
|
||
identifier = "news"
|
||
url = "/news/"
|
||
|
||
[[menu.global]]
|
||
name = "Docs"
|
||
weight = 5
|
||
identifier = "docs"
|
||
url = "/documentation/"
|
||
|
||
[[menu.global]]
|
||
name = "Themes"
|
||
weight = 10
|
||
identifier = "themes"
|
||
url = "https://themes.gohugo.io/"
|
||
|
||
# Anything with a weight > 100 gets an external icon
|
||
[[menu.global]]
|
||
name = "Community"
|
||
weight = 150
|
||
icon = true
|
||
identifier = "community"
|
||
post = "external"
|
||
url = "https://discourse.gohugo.io/"
|
||
|
||
|
||
[[menu.global]]
|
||
name = "GitHub"
|
||
weight = 200
|
||
identifier = "github"
|
||
post = "external"
|
||
url = "https://github.com/gohugoio/hugo"
|