mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
13e64d7276
6b00298bb Remove outdated "related example" 987f1e1cd Fix dead links (#601) 96287a20a Add config option "summaryLength" (#600) ced7f2085 Adjust Over showcase e334a6354 Add new showcase: over 10435b502 Add warning about privacy options only work with internal templates (#525) 48c6b0e4d Minor grammatical fix 684670ebc Add quote 0e9fada52 Improvements to taxonomy template examples e06c4bf73 Add syntax highlighting; consistent 4-space indentation c1cb3f081 Remove dead links for custom permalinks 3e3aefd04 Fix 0a671bc3751479e74a0a9d2132736c61d239707c d65888685 fix file name in 'Add Non-content Entries to a Menu' code toggle (#547) 1a0563857 Add Solus install guide (#590) 8a0d65b0d Update Windows Installation instructions (#564) c4348636a Fix typo 0a671bc37 Add post to menu example af14497c6 Add notes for `os.Stat` (Hugo 0.47) (#557) e49f65bb3 Singular to plural cb5608dbf Update introduction.md 30b060dff Add variable re-definition example (Hugo v0.48+) 21123967e Minor edits fac3df043 Refresh the Go Templates introduction 4a9600e92 Updating URL to how-to-guide for hosting hugo site on firebase bfaa7779c add missing word c2cb5d09b Tweak 'name: weight' to 'name: date' in example (#582) 5ea938ad6 Remove some Scratch 2708dcd57 Release 0.48 e375d0f05 Merge branch 'temp48' 75e36c160 releaser: Prepare repository for 0.49-DEV a6102f253 releaser: Add release notes to /docs for release of 0.48 41fc35db4 releaser: Bump versions for release of 0.48 64b9ecc74 Spell out the npm command for installing PostCSS 19e900a17 Improved Related Content doc fe21600e7 Merge commit '844aef544c19e9d8f529b4f8144e089d0982bb34' 844aef544 Squashed 'themes/gohugoioTheme/' changes from 66249819..68ddff44 069828db8 Update git.md d881d1433 Make default "related" behavior more explicit 60b9160eb Add docs for displaying 404 page on CloudFront b72ebc760 Add .gitattributes to /resources 000cf85f4 Make the pros/cons styling consistent for summaries; use desc list ebf1da97a Add note about outputStyle compressed e3338ee91 Triple backquote syntax fix 361962a7c Add one more Blogger to Hugo tool for Windows (.NET Framework 4.5) (#540) 066606a21 Fix wrong link about Mmark Syntax Document faee70757 Added exitwp-for-hugo 6b4108051 Add hugo-wrapper to starter-kits 4695dfba2 Added Utterances as Comments Alternatives. c7ba9e3e1 Correct typo beb850d9f Release 0.47.1 1cf417c8a Merge branch 'temp471' 0843bc46c releaser: Prepare repository for 0.48-DEV 8ff5c8b70 releaser: Add release notes to /docs for release of 0.47.1 e2353434d releaser: Bump versions for release of 0.47.1 ffb1300af Update development.md c22234ea5 netlify: Minify output 5b9191c56 Release 0.47 bfd92cf52 releaser: Prepare repository for 0.48-DEV ac7acf730 releaser: Add release notes to /docs for release of 0.47 b0096099d releaser: Bump versions for release of 0.47 86a7ae459 docs: Regenerate CLI docs d2c8b72bc Merge commit 'a95896878f4b4a79448b39ce93a4e0d3258b4a43' 84de7ef59 Merge commit '3a44bf182fed5f34621f450114083a6dd7e88a07' git-subtree-dir: docs git-subtree-split: 6b00298bb26b700281df28817b6556e7480cdd1e
412 lines
8.4 KiB
TOML
412 lines
8.4 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
|
||
|
||
pygmentsOptions = ""
|
||
# Use the Chroma stylesheet
|
||
pygmentsUseClasses = true
|
||
pygmentsUseClassic = false
|
||
|
||
# See https://help.farbox.com/pygments.html
|
||
pygmentsStyle = "trac"
|
||
|
||
[outputs]
|
||
home = [ "HTML", "RSS", "REDIR", "HEADERS" ]
|
||
section = [ "HTML", "RSS"]
|
||
|
||
[mediaTypes]
|
||
[mediaTypes."text/netlify"]
|
||
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.48"
|
||
## 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
|
||
# See https://github.com/gohugoio/hugo/issues/2424
|
||
hrefTargetBlank = false
|
||
angledQuotes = false
|
||
latexDashes = true
|
||
|
||
[imaging]
|
||
# See https://github.com/disintegration/imaging
|
||
# CatmullRom is a sharp bicubic filter which should fit the docs site well with its many screenshots.
|
||
# Note that you can also set this per image processing.
|
||
resampleFilter = "CatmullRom"
|
||
|
||
# Defatult JPEG quality setting. Default is 75.
|
||
quality = 75
|
||
|
||
anchor = "smart"
|
||
|
||
|
||
## 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 = "Hugo Pipes"
|
||
weight = 36
|
||
identifier = "pipes"
|
||
url = "/hugo-pipes/"
|
||
[[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/"
|
||
|
||
[[menu.global]]
|
||
name = "Showcase"
|
||
weight = 20
|
||
identifier = "showcase"
|
||
url = "/showcase/"
|
||
|
||
# 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"
|
||
|
||
### LANGUAGES ###
|
||
|
||
[languages]
|
||
[languages.en]
|
||
contentDir = "content/en"
|
||
languageName = "English"
|
||
weight = 1
|
||
[languages.zh]
|
||
contentDir = "content/zh"
|
||
languageName = "中文"
|
||
weight = 2
|
||
|
||
|
||
### LANGUAGE-SPECIFIC MENUS ###
|
||
|
||
# Chinese menus
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "关于 Hugo"
|
||
weight = 1
|
||
identifier = "about"
|
||
url = "/zh/about/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "入门"
|
||
weight = 5
|
||
identifier = "getting-started"
|
||
url = "/zh/getting-started/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "主题"
|
||
weight = 15
|
||
identifier = "themes"
|
||
post = "break"
|
||
url = "/zh/themes/"
|
||
|
||
# Core languages.zh.menus
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "内容管理"
|
||
weight = 20
|
||
identifier = "content-management"
|
||
post = "expanded"
|
||
url = "/zh/content-management/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "模板"
|
||
weight = 25
|
||
identifier = "templates"
|
||
url = "/zh/templates/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "函数"
|
||
weight = 30
|
||
identifier = "functions"
|
||
url = "/zh/functions/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "变量"
|
||
weight = 35
|
||
identifier = "variables"
|
||
url = "/zh/variables/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "CLI"
|
||
weight = 40
|
||
post = "break"
|
||
identifier = "commands"
|
||
url = "/commands/"
|
||
|
||
# LOW LEVEL ITEMS
|
||
[[languages.zh.menu.docs]]
|
||
name = "故障排除"
|
||
weight = 60
|
||
identifier = "troubleshooting"
|
||
url = "/zh/troubleshooting/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "工具"
|
||
weight = 70
|
||
identifier = "tools"
|
||
url = "/zh/tools/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "托管与部署"
|
||
weight = 80
|
||
identifier = "hosting-and-deployment"
|
||
url = "/zh/hosting-and-deployment/"
|
||
|
||
[[languages.zh.menu.docs]]
|
||
name = "贡献"
|
||
weight = 100
|
||
post = "break"
|
||
identifier = "contribute"
|
||
url = "/zh/contribute/"
|
||
|
||
[[languages.zh.menu.global]]
|
||
name = "新闻"
|
||
weight = 1
|
||
identifier = "news"
|
||
url = "/zh/news/"
|
||
|
||
[[languages.zh.menu.global]]
|
||
name = "文档"
|
||
weight = 5
|
||
identifier = "docs"
|
||
url = "/zh/documentation/"
|
||
|
||
[[languages.zh.menu.global]]
|
||
name = "主题"
|
||
weight = 10
|
||
identifier = "themes"
|
||
url = "https://themes.gohugo.io/"
|
||
|
||
[[languages.zh.menu.global]]
|
||
name = "作品展示"
|
||
weight = 20
|
||
identifier = "showcase"
|
||
url = "/zh/showcase/"
|
||
|
||
# Anything with a weight > 100 gets an external icon
|
||
[[languages.zh.menu.global]]
|
||
name = "社区"
|
||
weight = 150
|
||
icon = true
|
||
identifier = "community"
|
||
post = "external"
|
||
url = "https://discourse.gohugo.io/"
|
||
|
||
[[languages.zh.menu.global]]
|
||
name = "GitHub"
|
||
weight = 200
|
||
identifier = "github"
|
||
post = "external"
|
||
url = "https://github.com/gohugoio/hugo"
|