Merge branch 'b087' into release-0.87.0
|
@ -17,6 +17,12 @@ pluralizeListTitles = false
|
||||||
# We do redirects via Netlify's _redirects file, generated by Hugo (see "outputs" below).
|
# We do redirects via Netlify's _redirects file, generated by Hugo (see "outputs" below).
|
||||||
disableAliases = true
|
disableAliases = true
|
||||||
|
|
||||||
|
[minify]
|
||||||
|
[minify.tdewolff]
|
||||||
|
[minify.tdewolff.css]
|
||||||
|
[minify.tdewolff.html]
|
||||||
|
keepWhitespace = true
|
||||||
|
|
||||||
[module]
|
[module]
|
||||||
[module.hugoVersion]
|
[module.hugoVersion]
|
||||||
min = "0.56.0"
|
min = "0.56.0"
|
||||||
|
|
|
@ -25,3 +25,7 @@ style = "trac"
|
||||||
lineNumbersInTable = true
|
lineNumbersInTable = true
|
||||||
noClasses = false
|
noClasses = false
|
||||||
|
|
||||||
|
[tableOfContents]
|
||||||
|
endLevel = 2
|
||||||
|
ordered = false
|
||||||
|
startLevel = 2
|
|
@ -69,6 +69,7 @@ hugo [flags]
|
||||||
### SEE ALSO
|
### SEE ALSO
|
||||||
|
|
||||||
* [hugo check](/commands/hugo_check/) - Contains some verification checks
|
* [hugo check](/commands/hugo_check/) - Contains some verification checks
|
||||||
|
* [hugo completion](/commands/hugo_completion/) - generate the autocompletion script for the specified shell
|
||||||
* [hugo config](/commands/hugo_config/) - Print the site configuration
|
* [hugo config](/commands/hugo_config/) - Print the site configuration
|
||||||
* [hugo convert](/commands/hugo_convert/) - Convert your content to different formats
|
* [hugo convert](/commands/hugo_convert/) - Convert your content to different formats
|
||||||
* [hugo deploy](/commands/hugo_deploy/) - Deploy your site to a Cloud provider.
|
* [hugo deploy](/commands/hugo_deploy/) - Deploy your site to a Cloud provider.
|
||||||
|
|
48
docs/content/en/commands/hugo_completion.md
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
---
|
||||||
|
title: "hugo completion"
|
||||||
|
slug: hugo_completion
|
||||||
|
url: /commands/hugo_completion/
|
||||||
|
---
|
||||||
|
## hugo completion
|
||||||
|
|
||||||
|
generate the autocompletion script for the specified shell
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
Generate the autocompletion script for hugo for the specified shell.
|
||||||
|
See each sub-command's help for details on how to use the generated script.
|
||||||
|
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
-h, --help help for completion
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--config string config file (default is path/config.yaml|json|toml)
|
||||||
|
--configDir string config dir (default "config")
|
||||||
|
--debug debug output
|
||||||
|
-e, --environment string build environment
|
||||||
|
--ignoreVendor ignores any _vendor directory
|
||||||
|
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
|
||||||
|
--log enable Logging
|
||||||
|
--logFile string log File path (if set, logging enabled automatically)
|
||||||
|
--quiet build in quiet mode
|
||||||
|
-s, --source string filesystem path to read files relative from
|
||||||
|
--themesDir string filesystem path to themes directory
|
||||||
|
-v, --verbose verbose output
|
||||||
|
--verboseLog verbose logging
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [hugo](/commands/hugo/) - hugo builds your site
|
||||||
|
* [hugo completion bash](/commands/hugo_completion_bash/) - generate the autocompletion script for bash
|
||||||
|
* [hugo completion fish](/commands/hugo_completion_fish/) - generate the autocompletion script for fish
|
||||||
|
* [hugo completion powershell](/commands/hugo_completion_powershell/) - generate the autocompletion script for powershell
|
||||||
|
* [hugo completion zsh](/commands/hugo_completion_zsh/) - generate the autocompletion script for zsh
|
||||||
|
|
62
docs/content/en/commands/hugo_completion_bash.md
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
---
|
||||||
|
title: "hugo completion bash"
|
||||||
|
slug: hugo_completion_bash
|
||||||
|
url: /commands/hugo_completion_bash/
|
||||||
|
---
|
||||||
|
## hugo completion bash
|
||||||
|
|
||||||
|
generate the autocompletion script for bash
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
Generate the autocompletion script for the bash shell.
|
||||||
|
|
||||||
|
This script depends on the 'bash-completion' package.
|
||||||
|
If it is not installed already, you can install it via your OS's package manager.
|
||||||
|
|
||||||
|
To load completions in your current shell session:
|
||||||
|
$ source <(hugo completion bash)
|
||||||
|
|
||||||
|
To load completions for every new session, execute once:
|
||||||
|
Linux:
|
||||||
|
$ hugo completion bash > /etc/bash_completion.d/hugo
|
||||||
|
MacOS:
|
||||||
|
$ hugo completion bash > /usr/local/etc/bash_completion.d/hugo
|
||||||
|
|
||||||
|
You will need to start a new shell for this setup to take effect.
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
hugo completion bash
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
-h, --help help for bash
|
||||||
|
--no-descriptions disable completion descriptions
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--config string config file (default is path/config.yaml|json|toml)
|
||||||
|
--configDir string config dir (default "config")
|
||||||
|
--debug debug output
|
||||||
|
-e, --environment string build environment
|
||||||
|
--ignoreVendor ignores any _vendor directory
|
||||||
|
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
|
||||||
|
--log enable Logging
|
||||||
|
--logFile string log File path (if set, logging enabled automatically)
|
||||||
|
--quiet build in quiet mode
|
||||||
|
-s, --source string filesystem path to read files relative from
|
||||||
|
--themesDir string filesystem path to themes directory
|
||||||
|
-v, --verbose verbose output
|
||||||
|
--verboseLog verbose logging
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [hugo completion](/commands/hugo_completion/) - generate the autocompletion script for the specified shell
|
||||||
|
|
56
docs/content/en/commands/hugo_completion_fish.md
Normal file
|
@ -0,0 +1,56 @@
|
||||||
|
---
|
||||||
|
title: "hugo completion fish"
|
||||||
|
slug: hugo_completion_fish
|
||||||
|
url: /commands/hugo_completion_fish/
|
||||||
|
---
|
||||||
|
## hugo completion fish
|
||||||
|
|
||||||
|
generate the autocompletion script for fish
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
Generate the autocompletion script for the fish shell.
|
||||||
|
|
||||||
|
To load completions in your current shell session:
|
||||||
|
$ hugo completion fish | source
|
||||||
|
|
||||||
|
To load completions for every new session, execute once:
|
||||||
|
$ hugo completion fish > ~/.config/fish/completions/hugo.fish
|
||||||
|
|
||||||
|
You will need to start a new shell for this setup to take effect.
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
hugo completion fish [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
-h, --help help for fish
|
||||||
|
--no-descriptions disable completion descriptions
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--config string config file (default is path/config.yaml|json|toml)
|
||||||
|
--configDir string config dir (default "config")
|
||||||
|
--debug debug output
|
||||||
|
-e, --environment string build environment
|
||||||
|
--ignoreVendor ignores any _vendor directory
|
||||||
|
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
|
||||||
|
--log enable Logging
|
||||||
|
--logFile string log File path (if set, logging enabled automatically)
|
||||||
|
--quiet build in quiet mode
|
||||||
|
-s, --source string filesystem path to read files relative from
|
||||||
|
--themesDir string filesystem path to themes directory
|
||||||
|
-v, --verbose verbose output
|
||||||
|
--verboseLog verbose logging
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [hugo completion](/commands/hugo_completion/) - generate the autocompletion script for the specified shell
|
||||||
|
|
54
docs/content/en/commands/hugo_completion_powershell.md
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
---
|
||||||
|
title: "hugo completion powershell"
|
||||||
|
slug: hugo_completion_powershell
|
||||||
|
url: /commands/hugo_completion_powershell/
|
||||||
|
---
|
||||||
|
## hugo completion powershell
|
||||||
|
|
||||||
|
generate the autocompletion script for powershell
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
Generate the autocompletion script for powershell.
|
||||||
|
|
||||||
|
To load completions in your current shell session:
|
||||||
|
PS C:\> hugo completion powershell | Out-String | Invoke-Expression
|
||||||
|
|
||||||
|
To load completions for every new session, add the output of the above command
|
||||||
|
to your powershell profile.
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
hugo completion powershell [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
-h, --help help for powershell
|
||||||
|
--no-descriptions disable completion descriptions
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--config string config file (default is path/config.yaml|json|toml)
|
||||||
|
--configDir string config dir (default "config")
|
||||||
|
--debug debug output
|
||||||
|
-e, --environment string build environment
|
||||||
|
--ignoreVendor ignores any _vendor directory
|
||||||
|
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
|
||||||
|
--log enable Logging
|
||||||
|
--logFile string log File path (if set, logging enabled automatically)
|
||||||
|
--quiet build in quiet mode
|
||||||
|
-s, --source string filesystem path to read files relative from
|
||||||
|
--themesDir string filesystem path to themes directory
|
||||||
|
-v, --verbose verbose output
|
||||||
|
--verboseLog verbose logging
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [hugo completion](/commands/hugo_completion/) - generate the autocompletion script for the specified shell
|
||||||
|
|
61
docs/content/en/commands/hugo_completion_zsh.md
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
---
|
||||||
|
title: "hugo completion zsh"
|
||||||
|
slug: hugo_completion_zsh
|
||||||
|
url: /commands/hugo_completion_zsh/
|
||||||
|
---
|
||||||
|
## hugo completion zsh
|
||||||
|
|
||||||
|
generate the autocompletion script for zsh
|
||||||
|
|
||||||
|
### Synopsis
|
||||||
|
|
||||||
|
|
||||||
|
Generate the autocompletion script for the zsh shell.
|
||||||
|
|
||||||
|
If shell completion is not already enabled in your environment you will need
|
||||||
|
to enable it. You can execute the following once:
|
||||||
|
|
||||||
|
$ echo "autoload -U compinit; compinit" >> ~/.zshrc
|
||||||
|
|
||||||
|
To load completions for every new session, execute once:
|
||||||
|
# Linux:
|
||||||
|
$ hugo completion zsh > "${fpath[1]}/_hugo"
|
||||||
|
# macOS:
|
||||||
|
$ hugo completion zsh > /usr/local/share/zsh/site-functions/_hugo
|
||||||
|
|
||||||
|
You will need to start a new shell for this setup to take effect.
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
hugo completion zsh [flags]
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
```
|
||||||
|
-h, --help help for zsh
|
||||||
|
--no-descriptions disable completion descriptions
|
||||||
|
```
|
||||||
|
|
||||||
|
### Options inherited from parent commands
|
||||||
|
|
||||||
|
```
|
||||||
|
--config string config file (default is path/config.yaml|json|toml)
|
||||||
|
--configDir string config dir (default "config")
|
||||||
|
--debug debug output
|
||||||
|
-e, --environment string build environment
|
||||||
|
--ignoreVendor ignores any _vendor directory
|
||||||
|
--ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern
|
||||||
|
--log enable Logging
|
||||||
|
--logFile string log File path (if set, logging enabled automatically)
|
||||||
|
--quiet build in quiet mode
|
||||||
|
-s, --source string filesystem path to read files relative from
|
||||||
|
--themesDir string filesystem path to themes directory
|
||||||
|
-v, --verbose verbose output
|
||||||
|
--verboseLog verbose logging
|
||||||
|
```
|
||||||
|
|
||||||
|
### SEE ALSO
|
||||||
|
|
||||||
|
* [hugo completion](/commands/hugo_completion/) - generate the autocompletion script for the specified shell
|
||||||
|
|
|
@ -34,7 +34,7 @@ link = "https://twitter.com/spf13"
|
||||||
date = "2017-01-07T00:00:00Z"
|
date = "2017-01-07T00:00:00Z"
|
||||||
{{< /code-toggle >}}
|
{{< /code-toggle >}}
|
||||||
|
|
||||||
Let's assume you want to grab Tweets from the last two years and present them in a random order. In conjunction with the [`where`](/functions/where/) and [`now`](/functions/now/) functions, you can limit our range to the last two years via `now.AddDate -2 0 0`, which represents a point in time 2 years, 0 days, and 0 hours before the time of your last site build.
|
Let's assume you want to grab Tweets from the last two years and present them in a random order. In conjunction with the [`where`](/functions/where/) and [`now`](/functions/now/) functions, you can limit our range to the last two years via `now.AddDate -2 0 0`, which represents a point in time 2 years, 0 months, and 0 days before the time of your last site build.
|
||||||
|
|
||||||
{{< code file="partials/templates/random-tweets.html" download="tweets.html" >}}
|
{{< code file="partials/templates/random-tweets.html" download="tweets.html" >}}
|
||||||
{{ range where $.Site.Data.tweets.tweet "date" "ge" (now.AddDate -2 0 0) | shuffle }}
|
{{ range where $.Site.Data.tweets.tweet "date" "ge" (now.AddDate -2 0 0) | shuffle }}
|
||||||
|
|
|
@ -8,23 +8,9 @@ keywords: [numbers]
|
||||||
menu:
|
menu:
|
||||||
docs:
|
docs:
|
||||||
parent: "functions"
|
parent: "functions"
|
||||||
toc: false
|
|
||||||
signature: ["lang.NumFmt PRECISION NUMBER [OPTIONS [DELIMITER]]"]
|
signature: ["lang.NumFmt PRECISION NUMBER [OPTIONS [DELIMITER]]"]
|
||||||
aliases: ['/functions/numfmt/']
|
aliases: ['/functions/numfmt/']
|
||||||
type: 'template-func'
|
type: 'template-func'
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
The default options value is `- . ,`. The default delimiter within the options
|
|
||||||
value is a space. If you need to use a space as one of the options, set a
|
|
||||||
custom delimiter.s
|
|
||||||
|
|
||||||
Numbers greater than or equal to 5 are rounded up. For example, if precision is set to `0`, `1.5` becomes `2`, and `1.4` becomes `1`.
|
|
||||||
|
|
||||||
```
|
|
||||||
{{ lang.NumFmt 2 12345.6789 }} → 12,345.68
|
|
||||||
{{ lang.NumFmt 2 12345.6789 "- , ." }} → 12.345,68
|
|
||||||
{{ lang.NumFmt 0 -12345.6789 "- . ," }} → -12,346
|
|
||||||
{{ lang.NumFmt 6 -12345.6789 "- ." }} → -12345.678900
|
|
||||||
{{ lang.NumFmt 6 -12345.6789 "-|.| " "|" }} → -1 2345.678900
|
|
||||||
{{ -98765.4321 | lang.NumFmt 2 }} → -98,765.43
|
|
||||||
```
|
|
||||||
|
|
|
@ -106,219 +106,306 @@ The following is the full list of Hugo-defined variables with their default
|
||||||
value in parentheses. Users may choose to override those values in their site
|
value in parentheses. Users may choose to override those values in their site
|
||||||
config file(s).
|
config file(s).
|
||||||
|
|
||||||
archetypeDir ("archetypes")
|
### archetypeDir
|
||||||
: The directory where Hugo finds archetype files (content templates). {{% module-mounts-note %}}
|
|
||||||
|
|
||||||
assetDir ("assets")
|
**Default value:** "archetypes"
|
||||||
: The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/). {{% module-mounts-note %}}
|
|
||||||
|
|
||||||
baseURL
|
The directory where Hugo finds archetype files (content templates). {{% module-mounts-note %}}
|
||||||
: Hostname (and path) to the root, e.g. https://bep.is/
|
|
||||||
|
|
||||||
blackfriday
|
### assetDir
|
||||||
: See [Configure Blackfriday](/getting-started/configuration-markup#blackfriday)
|
|
||||||
|
|
||||||
build
|
**Default value:** "assets"
|
||||||
: See [Configure Build](#configure-build)
|
|
||||||
|
|
||||||
buildDrafts (false)
|
The directory where Hugo finds asset files used in [Hugo Pipes](/hugo-pipes/). {{% module-mounts-note %}}
|
||||||
: Include drafts when building.
|
|
||||||
|
|
||||||
buildExpired (false)
|
### baseURL
|
||||||
: Include content already expired.
|
Hostname (and path) to the root, e.g. https://bep.is/
|
||||||
|
|
||||||
buildFuture (false)
|
### blackfriday
|
||||||
: Include content with publishdate in the future.
|
See [Configure Blackfriday](/getting-started/configuration-markup#blackfriday)
|
||||||
|
|
||||||
caches
|
### build
|
||||||
: See [Configure File Caches](#configure-file-caches)
|
See [Configure Build](#configure-build)
|
||||||
|
|
||||||
canonifyURLs (false)
|
### buildDrafts (false)
|
||||||
: Enable to turn relative URLs into absolute.
|
|
||||||
|
|
||||||
contentDir ("content")
|
**Default value:** false
|
||||||
: The directory from where Hugo reads content files. {{% module-mounts-note %}}
|
|
||||||
|
|
||||||
dataDir ("data")
|
Include drafts when building.
|
||||||
: The directory from where Hugo reads data files. {{% module-mounts-note %}}
|
|
||||||
|
|
||||||
defaultContentLanguage ("en")
|
### buildExpired
|
||||||
: Content without language indicator will default to this language.
|
|
||||||
|
|
||||||
defaultContentLanguageInSubdir (false)
|
**Default value:** false
|
||||||
: Render the default content language in subdir, e.g. `content/en/`. The site root `/` will then redirect to `/en/`.
|
|
||||||
|
|
||||||
disableAliases (false)
|
Include content already expired.
|
||||||
: Will disable generation of alias redirects. Note that even if `disableAliases` is set, the aliases themselves are preserved on the page. The motivation with this is to be able to generate 301 redirects in an `.htaccess`, a Netlify `_redirects` file or similar using a custom output format.
|
|
||||||
|
|
||||||
disableHugoGeneratorInject (false)
|
### buildFuture
|
||||||
: Hugo will, by default, inject a generator meta tag in the HTML head on the _home page only_. You can turn it off, but we would really appreciate if you don't, as this is a good way to watch Hugo's popularity on the rise.
|
|
||||||
|
|
||||||
disableKinds ([])
|
**Default value:** false
|
||||||
: Enable disabling of all pages of the specified *Kinds*. Allowed values in this list: `"page"`, `"home"`, `"section"`, `"taxonomy"`, `"term"`, `"RSS"`, `"sitemap"`, `"robotsTXT"`, `"404"`.
|
|
||||||
|
|
||||||
disableLiveReload (false)
|
Include content with publishdate in the future.
|
||||||
: Disable automatic live reloading of browser window.
|
|
||||||
|
### caches
|
||||||
|
See [Configure File Caches](#configure-file-caches)
|
||||||
|
|
||||||
|
### cascade
|
||||||
|
|
||||||
|
{{< new-in "0.86.0" >}}
|
||||||
|
|
||||||
|
Pass down down default configuration values (front matter) to pages in the content tree. The options in site config is the same as in page front matter, see [Front Matter Cascade](/content-management/front-matter#front-matter-cascade).
|
||||||
|
|
||||||
|
### canonifyURLs
|
||||||
|
|
||||||
|
**Default value:** false
|
||||||
|
|
||||||
|
Enable to turn relative URLs into absolute.
|
||||||
|
|
||||||
|
### contentDir
|
||||||
|
|
||||||
|
**Default value:** "content"
|
||||||
|
|
||||||
|
The directory from where Hugo reads content files. {{% module-mounts-note %}}
|
||||||
|
|
||||||
|
### dataDir
|
||||||
|
|
||||||
|
**Default value:** "data"
|
||||||
|
|
||||||
|
The directory from where Hugo reads data files. {{% module-mounts-note %}}
|
||||||
|
|
||||||
|
### defaultContentLanguage
|
||||||
|
|
||||||
|
**Default value:** "en"
|
||||||
|
|
||||||
|
Content without language indicator will default to this language.
|
||||||
|
|
||||||
|
### defaultContentLanguageInSubdir
|
||||||
|
|
||||||
|
**Default value:** false
|
||||||
|
|
||||||
|
Render the default content language in subdir, e.g. `content/en/`. The site root `/` will then redirect to `/en/`.
|
||||||
|
|
||||||
|
### disableAliases
|
||||||
|
|
||||||
|
**Default value:** false
|
||||||
|
|
||||||
|
Will disable generation of alias redirects. Note that even if `disableAliases` is set, the aliases themselves are preserved on the page. The motivation with this is to be able to generate 301 redirects in an `.htaccess`, a Netlify `_redirects` file or similar using a custom output format.
|
||||||
|
|
||||||
|
### disableHugoGeneratorInject
|
||||||
|
|
||||||
|
**Default value:** false
|
||||||
|
|
||||||
|
Hugo will, by default, inject a generator meta tag in the HTML head on the _home page only_. You can turn it off, but we would really appreciate if you don't, as this is a good way to watch Hugo's popularity on the rise.
|
||||||
|
|
||||||
|
### disableKinds
|
||||||
|
|
||||||
|
**Default value:** []
|
||||||
|
|
||||||
|
Enable disabling of all pages of the specified *Kinds*. Allowed values in this list: `"page"`, `"home"`, `"section"`, `"taxonomy"`, `"term"`, `"RSS"`, `"sitemap"`, `"robotsTXT"`, `"404"`.
|
||||||
|
|
||||||
|
### disableLiveReload
|
||||||
|
|
||||||
|
**Default value:** false
|
||||||
|
|
||||||
|
Disable automatic live reloading of browser window.
|
||||||
|
|
||||||
|
### disablePathToLower
|
||||||
|
|
||||||
|
**Default value:** false
|
||||||
|
|
||||||
disablePathToLower (false)
|
|
||||||
: Do not convert the url/path to lowercase.
|
: Do not convert the url/path to lowercase.
|
||||||
|
|
||||||
enableEmoji (false)
|
### enableEmoji
|
||||||
: Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/).
|
|
||||||
|
|
||||||
enableGitInfo (false)
|
**Default value:** false
|
||||||
: Enable `.GitInfo` object for each page (if the Hugo site is versioned by Git). This will then update the `Lastmod` parameter for each page using the last git commit date for that content file.
|
|
||||||
|
|
||||||
enableInlineShortcodes (false)
|
Enable Emoji emoticons support for page content; see the [Emoji Cheat Sheet](https://www.webpagefx.com/tools/emoji-cheat-sheet/).
|
||||||
: Enable inline shortcode support. See [Inline Shortcodes](/templates/shortcode-templates/#inline-shortcodes).
|
|
||||||
|
|
||||||
enableMissingTranslationPlaceholders (false)
|
### enableGitInfo
|
||||||
: Show a placeholder instead of the default value or an empty string if a translation is missing.
|
|
||||||
|
|
||||||
enableRobotsTXT (false)
|
**Default value:** false
|
||||||
: Enable generation of `robots.txt` file.
|
|
||||||
|
|
||||||
frontmatter
|
Enable `.GitInfo` object for each page (if the Hugo site is versioned by Git). This will then update the `Lastmod` parameter for each page using the last git commit date for that content file.
|
||||||
|
|
||||||
: See [Front matter Configuration](#configure-front-matter).
|
### enableInlineShortcodes
|
||||||
|
|
||||||
footnoteAnchorPrefix ("")
|
**Default value:** false
|
||||||
: Prefix for footnote anchors.
|
|
||||||
|
|
||||||
footnoteReturnLinkContents ("")
|
Enable inline shortcode support. See [Inline Shortcodes](/templates/shortcode-templates/#inline-shortcodes).
|
||||||
: Text to display for footnote return links.
|
|
||||||
|
|
||||||
googleAnalytics ("")
|
### enableMissingTranslationPlaceholders
|
||||||
: Google Analytics tracking ID.
|
|
||||||
|
|
||||||
hasCJKLanguage (false)
|
**Default value:** false
|
||||||
: If true, auto-detect Chinese/Japanese/Korean Languages in the content. This will make `.Summary` and `.WordCount` behave correctly for CJK languages.
|
|
||||||
|
|
||||||
imaging
|
Show a placeholder instead of the default value or an empty string if a translation is missing.
|
||||||
: See [Image Processing Config](/content-management/image-processing/#image-processing-config).
|
|
||||||
|
|
||||||
languages
|
### enableRobotsTXT
|
||||||
: See [Configure Languages](/content-management/multilingual/#configure-languages).
|
|
||||||
|
|
||||||
languageCode ("")
|
**Default value:** false
|
||||||
: The site's language code. It is used in the default [RSS template](/templates/rss/#configure-rss) and can be useful for [multi-lingual sites](/content-management/multilingual/#configure-multilingual-multihost).
|
|
||||||
|
|
||||||
languageName ("")
|
Enable generation of `robots.txt` file.
|
||||||
: The site's language name.
|
|
||||||
|
|
||||||
disableLanguages
|
### frontmatter
|
||||||
: See [Disable a Language](/content-management/multilingual/#disable-a-language)
|
|
||||||
|
|
||||||
layoutDir ("layouts")
|
See [Front matter Configuration](#configure-front-matter).
|
||||||
: The directory from where Hugo reads layouts (templates).
|
|
||||||
|
|
||||||
log (false)
|
### footnoteAnchorPrefix
|
||||||
: Enable logging.
|
|
||||||
|
|
||||||
logFile ("")
|
**Default value:** ""
|
||||||
: Log File path (if set, logging enabled automatically).
|
|
||||||
|
|
||||||
markup
|
Prefix for footnote anchors.
|
||||||
: See [Configure Markup](/getting-started/configuration-markup).{{< new-in "0.60.0" >}}
|
|
||||||
|
|
||||||
mediaTypes
|
### footnoteReturnLinkContents
|
||||||
|
|
||||||
|
**Default value:** ""
|
||||||
|
|
||||||
|
Text to display for footnote return links.
|
||||||
|
|
||||||
|
### googleAnalytics
|
||||||
|
|
||||||
|
**Default value:** ""
|
||||||
|
|
||||||
|
Google Analytics tracking ID.
|
||||||
|
|
||||||
|
### hasCJKLanguage
|
||||||
|
|
||||||
|
**Default value:** false
|
||||||
|
|
||||||
|
If true, auto-detect Chinese/Japanese/Korean Languages in the content. This will make `.Summary` and `.WordCount` behave correctly for CJK languages.
|
||||||
|
|
||||||
|
### imaging
|
||||||
|
See [Image Processing Config](/content-management/image-processing/#image-processing-config).
|
||||||
|
|
||||||
|
### languages
|
||||||
|
See [Configure Languages](/content-management/multilingual/#configure-languages).
|
||||||
|
|
||||||
|
### disableLanguages
|
||||||
|
|
||||||
|
See [Disable a Language](/content-management/multilingual/#disable-a-language)
|
||||||
|
|
||||||
|
### markup
|
||||||
|
See [Configure Markup](/getting-started/configuration-markup).{{< new-in "0.60.0" >}}
|
||||||
|
|
||||||
|
### mediaTypes
|
||||||
See [Configure Media Types](/templates/output-formats/#media-types).
|
See [Configure Media Types](/templates/output-formats/#media-types).
|
||||||
|
|
||||||
menu
|
### menus
|
||||||
: See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu).
|
See [Add Non-content Entries to a Menu](/content-management/menus/#add-non-content-entries-to-a-menu).
|
||||||
|
|
||||||
minify
|
### minify
|
||||||
: See [Configure Minify](#configure-minify)
|
See [Configure Minify](#configure-minify)
|
||||||
|
|
||||||
module
|
### module
|
||||||
: Module config see [Module Config](/hugo-modules/configuration/).{{< new-in "0.56.0" >}}
|
Module config see [Module Config](/hugo-modules/configuration/).{{< new-in "0.56.0" >}}
|
||||||
|
|
||||||
newContentEditor ("")
|
### newContentEditor
|
||||||
: The editor to use when creating new content.
|
The editor to use when creating new content.
|
||||||
|
|
||||||
noChmod (false)
|
### noChmod
|
||||||
: Don't sync permission mode of files.
|
Don't sync permission mode of files.
|
||||||
|
|
||||||
noTimes (false)
|
### noTimes
|
||||||
: Don't sync modification time of files.
|
Don't sync modification time of files.
|
||||||
|
|
||||||
outputFormats
|
### outputFormats
|
||||||
See [Configure Output Formats](#configure-additional-output-formats).
|
See [Configure Output Formats](#configure-additional-output-formats).
|
||||||
|
|
||||||
paginate (10)
|
### paginate
|
||||||
: Default number of elements per page in [pagination](/templates/pagination/).
|
|
||||||
|
|
||||||
paginatePath ("page")
|
**Default value:** 10
|
||||||
: The path element used during pagination (https://example.com/page/2).
|
|
||||||
|
|
||||||
permalinks
|
Default number of elements per page in [pagination](/templates/pagination/).
|
||||||
: See [Content Management](/content-management/urls/#permalinks).
|
|
||||||
|
|
||||||
pluralizeListTitles (true)
|
### paginatePath
|
||||||
: Pluralize titles in lists.
|
|
||||||
|
|
||||||
publishDir ("public")
|
**Default value:** "page"
|
||||||
: The directory to where Hugo will write the final static site (the HTML files etc.).
|
|
||||||
|
|
||||||
related
|
The path element used during pagination (https://example.com/page/2).
|
||||||
|
|
||||||
|
### permalinks
|
||||||
|
See [Content Management](/content-management/urls/#permalinks).
|
||||||
|
|
||||||
|
### pluralizeListTitles
|
||||||
|
|
||||||
|
**Default value:** true
|
||||||
|
|
||||||
|
Pluralize titles in lists.
|
||||||
|
|
||||||
|
### publishDir
|
||||||
|
|
||||||
|
**Default value:** "public"
|
||||||
|
|
||||||
|
The directory to where Hugo will write the final static site (the HTML files etc.).
|
||||||
|
|
||||||
|
### related
|
||||||
: See [Related Content](/content-management/related/#configure-related-content).{{< new-in "0.27" >}}
|
: See [Related Content](/content-management/related/#configure-related-content).{{< new-in "0.27" >}}
|
||||||
|
|
||||||
relativeURLs (false)
|
### relativeURLs
|
||||||
: Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs.
|
Enable this to make all relative URLs relative to content root. Note that this does not affect absolute URLs.
|
||||||
|
|
||||||
refLinksErrorLevel ("ERROR")
|
### refLinksErrorLevel
|
||||||
: When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this logg level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
|
|
||||||
|
|
||||||
refLinksNotFoundURL
|
**Default value:** "ERROR"
|
||||||
: URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is.
|
|
||||||
|
|
||||||
rssLimit (unlimited)
|
When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this logg level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
|
||||||
: Maximum number of items in the RSS feed.
|
|
||||||
|
|
||||||
sectionPagesMenu ("")
|
### refLinksNotFoundURL
|
||||||
: See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers).
|
URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is.
|
||||||
|
|
||||||
sitemap
|
### rssLimit
|
||||||
: Default [sitemap configuration](/templates/sitemap-template/#configure-sitemapxml).
|
|
||||||
|
|
||||||
staticDir ("static")
|
Maximum number of items in the RSS feed.
|
||||||
: A directory or a list of directories from where Hugo reads [static files][static-files]. {{% module-mounts-note %}}
|
|
||||||
|
|
||||||
summaryLength (70)
|
### sectionPagesMenu
|
||||||
: The length of text in words to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting).
|
See ["Section Menu for Lazy Bloggers"](/templates/menu-templates/#section-menu-for-lazy-bloggers).
|
||||||
|
|
||||||
taxonomies
|
### sitemap
|
||||||
: See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies).
|
Default [sitemap configuration](/templates/sitemap-template/#configure-sitemapxml).
|
||||||
|
|
||||||
theme ("")
|
### summaryLength
|
||||||
: Theme to use (located by default in `/themes/THEMENAME/`).
|
|
||||||
|
|
||||||
themesDir ("themes")
|
**Default value:** 70
|
||||||
: The directory where Hugo reads the themes from.
|
|
||||||
|
|
||||||
timeout (10000)
|
The length of text in words to show in a [`.Summary`](/content-management/summaries/#hugo-defined-automatic-summary-splitting).
|
||||||
: Timeout for generating page contents, in milliseconds (defaults to 10 seconds). *Note:* this is used to bail out of recursive content generation, if your pages are slow to generate (e.g., because they require large image processing or depend on remote contents) you might need to raise this limit.
|
|
||||||
|
|
||||||
timeZone {{< new-in "0.86.0" >}}
|
### taxonomies
|
||||||
: The time zone (or location), e.g. `Europe/Oslo`, used to parse front matter dates without such information and in the [`time` function](/functions/time/).
|
See [Configure Taxonomies](/content-management/taxonomies#configure-taxonomies).
|
||||||
|
|
||||||
title ("")
|
### theme
|
||||||
: Site title.
|
: See [Module Config](/hugo-modules/configuration/#module-config-imports) for how to import a theme.
|
||||||
|
|
||||||
titleCaseStyle ("AP")
|
### themesDir
|
||||||
: See [Configure Title Case](#configure-title-case)
|
|
||||||
|
|
||||||
uglyURLs (false)
|
**Default value:** "themes"
|
||||||
: When enabled, creates URL of the form `/filename.html` instead of `/filename/`.
|
|
||||||
|
|
||||||
verbose (false)
|
The directory where Hugo reads the themes from.
|
||||||
: Enable verbose output.
|
|
||||||
|
|
||||||
verboseLog (false)
|
### timeout
|
||||||
: Enable verbose logging.
|
|
||||||
|
|
||||||
watch (false)
|
**Default value:** 10000
|
||||||
: Watch filesystem for changes and recreate as needed.
|
|
||||||
|
Timeout for generating page contents, in milliseconds (defaults to 10 seconds). *Note:* this is used to bail out of recursive content generation, if your pages are slow to generate (e.g., because they require large image processing or depend on remote contents) you might need to raise this limit.
|
||||||
|
|
||||||
|
### timeZone
|
||||||
|
|
||||||
|
{{< new-in "0.87.0" >}}
|
||||||
|
|
||||||
|
The time zone (or location), e.g. `Europe/Oslo`, used to parse front matter dates without such information and in the [`time` function](/functions/time/). The list of valid values may be system dependent, but should include `UTC`, `Local`, and any location in the [IANA Time Zone database](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
|
||||||
|
|
||||||
|
### title
|
||||||
|
Site title.
|
||||||
|
|
||||||
|
### titleCaseStyle
|
||||||
|
|
||||||
|
**Default value:** "AP"
|
||||||
|
|
||||||
|
See [Configure Title Case](#configure-title-case)
|
||||||
|
|
||||||
|
### uglyURLs
|
||||||
|
When enabled, creates URL of the form `/filename.html` instead of `/filename/`.
|
||||||
|
|
||||||
|
### watch
|
||||||
|
|
||||||
|
Watch filesystem for changes and recreate as needed.
|
||||||
|
|
||||||
{{% note %}}
|
{{% note %}}
|
||||||
If you are developing your site on a \*nix machine, here is a handy shortcut for finding a configuration option from the command line:
|
If you are developing your site on a \*nix machine, here is a handy shortcut for finding a configuration option from the command line:
|
||||||
|
|
BIN
docs/content/en/news/0.86.0-relnotes/featured.png
Normal file
After Width: | Height: | Size: 184 KiB |
|
@ -1,16 +1,16 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
date: 2021-07-21
|
date: 2021-07-21
|
||||||
title: "0.86.0"
|
title: "Hugo 0.86.0: Cascade in Config"
|
||||||
description: "0.86.0"
|
description: "Hugo 0.86.0 adds cascade keyword to site config, much improved \"active menu item\" logic for section pages, and more."
|
||||||
categories: ["Releases"]
|
categories: ["Releases"]
|
||||||
---
|
---
|
||||||
|
|
||||||
This is release is a set of smaller fixes and improvements. Some of the more noteable:
|
This release is a set of smaller fixes and improvements. Some of the more notable:
|
||||||
|
|
||||||
You can now have a top level [cascade](https://gohugo.io/content-management/front-matter#front-matter-cascade) (or one per language, if needed) section in your site configuration (e.g. `config.toml`). This way you can control default front matter values from outside of the content files.
|
You can now have a top level [cascade](https://gohugo.io/content-management/front-matter#front-matter-cascade) (or one per language, if needed) section in your site configuration (e.g. `config.toml`). This way you can control default front matter values from outside of the content files.
|
||||||
|
|
||||||
Hugo's [Menu system](https://gohugo.io/content-management/menus/) works good, but hasn't been particulary easy to set the active menu state for section pages without a menu defintion. We have had the option [Section Menu for Lazy Bloggers](https://gohugo.io/templates/menu-templates/#section-menu-for-lazy-bloggers). That helped for the common case, but we have now made it behave more sensible out of the box: `$section.HasMenuCurrent` will now always return true for any descendant of that section. To support this for menu defintions in the site config, we have added a new `pageRef` option on [MenuEntry](https://gohugo.io/variables/menus/#menu-entry-variables):
|
Hugo's [Menu system](https://gohugo.io/content-management/menus/) works well, but hasn't been particularly easy to set the active menu state for section pages without a menu definition. We have had the option [Section Menu for Lazy Bloggers](https://gohugo.io/templates/menu-templates/#section-menu-for-lazy-bloggers). That helped for the common case, but we have now made it behave more sensible out of the box: `$page.HasMenuCurrent $sectionMenuEntry` will now always return true for any descendant of that section. To support this for menu definitions in the site config, we have added a new `pageRef` option on [MenuEntry](https://gohugo.io/variables/menus/#menu-entry-variables):
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[[menus.main]]
|
[[menus.main]]
|
||||||
|
@ -54,8 +54,3 @@ Hugo now has:
|
||||||
* Fix default values when loading from config dir [ae6cf93c](https://github.com/gohugoio/hugo/commit/ae6cf93c84c3584b111f4b9fa3fb4e3f63d37915) [@bep](https://github.com/bep) [#8763](https://github.com/gohugoio/hugo/issues/8763)
|
* Fix default values when loading from config dir [ae6cf93c](https://github.com/gohugoio/hugo/commit/ae6cf93c84c3584b111f4b9fa3fb4e3f63d37915) [@bep](https://github.com/bep) [#8763](https://github.com/gohugoio/hugo/issues/8763)
|
||||||
* Fix the deprecation error/warn log levels [a70da2b7](https://github.com/gohugoio/hugo/commit/a70da2b74a6af0834cce9668cdb6acdb1c86a4c0) [@bep](https://github.com/bep)
|
* Fix the deprecation error/warn log levels [a70da2b7](https://github.com/gohugoio/hugo/commit/a70da2b74a6af0834cce9668cdb6acdb1c86a4c0) [@bep](https://github.com/bep)
|
||||||
* Fix transparency problem when converting 32-bit images to WebP [8f40f34c](https://github.com/gohugoio/hugo/commit/8f40f34cd10a98598bb822ec633fd5d0ea64b612) [@bep](https://github.com/bep) [#8729](https://github.com/gohugoio/hugo/issues/8729)
|
* Fix transparency problem when converting 32-bit images to WebP [8f40f34c](https://github.com/gohugoio/hugo/commit/8f40f34cd10a98598bb822ec633fd5d0ea64b612) [@bep](https://github.com/bep) [#8729](https://github.com/gohugoio/hugo/issues/8729)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
date: 2021-07-30
|
date: 2021-07-30
|
||||||
title: "Hugo 0.86.1: A couple of Bug Fixes"
|
title: "Hugo 0.86.1: One Bug Fix"
|
||||||
description: "This version fixes a couple of bugs introduced in 0.86.0."
|
description: "This version fixes a of bug introduced in 0.86.0."
|
||||||
categories: ["Releases"]
|
categories: ["Releases"]
|
||||||
images:
|
images:
|
||||||
- images/blog/hugo-bug-poster.png
|
- images/blog/hugo-bug-poster.png
|
||||||
|
|
|
@ -3972,7 +3972,7 @@
|
||||||
"-12,346"
|
"-12,346"
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"{{ -98765.4321 | lang.NumFmt 2 }}",
|
"{{ -98765.4321 | lang.FormatNumberCustom 2 }}",
|
||||||
"-98,765.43"
|
"-98,765.43"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
|
|
|
@ -3,7 +3,7 @@ publish = "public"
|
||||||
command = "hugo --gc --minify"
|
command = "hugo --gc --minify"
|
||||||
|
|
||||||
[context.production.environment]
|
[context.production.environment]
|
||||||
HUGO_VERSION = "0.85.0"
|
HUGO_VERSION = "0.86.1"
|
||||||
HUGO_ENV = "production"
|
HUGO_ENV = "production"
|
||||||
HUGO_ENABLEGITINFO = "true"
|
HUGO_ENABLEGITINFO = "true"
|
||||||
|
|
||||||
|
@ -11,20 +11,20 @@ HUGO_ENABLEGITINFO = "true"
|
||||||
command = "hugo --gc --minify --enableGitInfo"
|
command = "hugo --gc --minify --enableGitInfo"
|
||||||
|
|
||||||
[context.split1.environment]
|
[context.split1.environment]
|
||||||
HUGO_VERSION = "0.85.0"
|
HUGO_VERSION = "0.86.1"
|
||||||
HUGO_ENV = "production"
|
HUGO_ENV = "production"
|
||||||
|
|
||||||
[context.deploy-preview]
|
[context.deploy-preview]
|
||||||
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
|
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
|
||||||
|
|
||||||
[context.deploy-preview.environment]
|
[context.deploy-preview.environment]
|
||||||
HUGO_VERSION = "0.85.0"
|
HUGO_VERSION = "0.86.1"
|
||||||
|
|
||||||
[context.branch-deploy]
|
[context.branch-deploy]
|
||||||
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
|
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
|
||||||
|
|
||||||
[context.branch-deploy.environment]
|
[context.branch-deploy.environment]
|
||||||
HUGO_VERSION = "0.85.0"
|
HUGO_VERSION = "0.86.1"
|
||||||
|
|
||||||
[context.next.environment]
|
[context.next.environment]
|
||||||
HUGO_ENABLEGITINFO = "true"
|
HUGO_ENABLEGITINFO = "true"
|
||||||
|
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 34 KiB |
After Width: | Height: | Size: 33 KiB |
Before Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 59 KiB |
After Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 74 KiB |
Before Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 36 KiB |
After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 35 KiB |
After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 29 KiB |
After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 38 KiB |
After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 41 KiB |
Before Width: | Height: | Size: 31 KiB |
After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 87 KiB |
After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 47 KiB |
After Width: | Height: | Size: 47 KiB |
Before Width: | Height: | Size: 103 KiB |
After Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 65 KiB |
After Width: | Height: | Size: 65 KiB |
Before Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 45 KiB |
Before Width: | Height: | Size: 169 KiB |
After Width: | Height: | Size: 168 KiB |
Before Width: | Height: | Size: 300 KiB |
Before Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 82 KiB |
Before Width: | Height: | Size: 142 KiB |
Before Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 32 KiB |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 101 KiB |
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
Before Width: | Height: | Size: 127 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 39 KiB |
After Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 66 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 48 KiB |
After Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 41 KiB After Width: | Height: | Size: 41 KiB |