File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
content/basics/configuration Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ defaultContentLanguageInSubdir= true
1515 showVisitedLinks = true
1616 disableBreadcrumb = false
1717 disableNextPrev = false
18+ titleSeparator = " ::"
1819
1920[outputs ]
2021home = [ " HTML" , " RSS" , " JSON" ]
Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ Note that some of these parameters are explained in details in other sections of
4343 themeVariant = " "
4444 # Provide a list of custom css files to load relative from the `static/` folder in the site root.
4545 custom_css = [" css/foo.css" , " css/bar.css" ]
46+ # Change the title separator. Default to "::".
47+ titleSeparator = " -"
4648```
4749
4850## Activate search
Original file line number Diff line number Diff line change 66 {{ hugo.Generator }}
77 {{ partial "meta.html" . }}
88 {{ partial "favicon.html" . }}
9- < title > {{ .Title }} :: {{ .Site.Title }}</ title >
9+ < title > {{ .Title }} {{ default "::" .Site.Params.titleSeparator }} {{ .Site.Title }}</ title >
1010
1111 {{ $assetBusting := not .Site.Params.disableAssetsBusting }}
1212 < link href ="{{ "css /nucleus.css" | relURL}}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}" rel="stylesheet ">
You can’t perform that action at this time.
0 commit comments