Merge commit 'a8e9fc699a6ff7d578f97a7c553ce844efad8fdb'
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 12 Jan 2022 07:16:35 +0000 (08:16 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 12 Jan 2022 07:16:35 +0000 (08:16 +0100)
16 files changed:
1  2 
docs/archetypes/news/index.md
docs/config.toml
docs/config/_default/security.toml
docs/content/en/about/security-model/index.md
docs/content/en/content-management/image-processing/index.md
docs/content/en/functions/images/index.md
docs/content/en/hugo-pipes/introduction.md
docs/content/en/news/2021-12-17-no-more-releasenotes.md
docs/content/en/news/2021/0.91.2-relnotes/featured.png
docs/content/en/news/2021/0.91.2-relnotes/index.md
docs/content/en/templates/data-templates.md
docs/content/en/variables/files.md
docs/content/en/variables/git.md
docs/content/en/variables/page.md
docs/layouts/partials/maintenance-pages-table.html
docs/netlify.toml

index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..42e207e6a09f86d13e6fdfec71aa9b141a7370a3
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,6 @@@
++---
++title: "{{ replace .Name "-" " " | title }}"
++description: ""
++date: {{ .Date }}
++---
++
index 7888579fe7eca81e47c7e736d433f03248830adf,0000000000000000000000000000000000000000..ef8d99d6dd7985d076b1a8134e605a126c401537
mode 100644,000000..100644
--- /dev/null
@@@ -1,79 -1,0 +1,80 @@@
 +baseURL = "https://gohugo.io/"
 +paginate =  100
 +defaultContentLanguage = "en"
 +enableEmoji = true
++timeZone = "Europe/Oslo"
 +# Set the unicode character used for the "return" link in page footnotes.
 +footnotereturnlinkcontents = "↩"
 +languageCode = "en-us"
 +title = "Hugo"
 +
 + ignoreErrors = ["error-remote-getjson", "error-missing-instagram-accesstoken"]
 +
 +
 +googleAnalytics = "UA-7131036-4"
 +
 +pluralizeListTitles = false
 +
 +# We do redirects via Netlify's _redirects file, generated by Hugo (see "outputs" below).
 +disableAliases = true
 +
 +[minify]
 +  [minify.tdewolff]
 +    [minify.tdewolff.css]
 +    [minify.tdewolff.html]
 +      keepWhitespace = true
 +
 +[module]
 +  [module.hugoVersion]
 +    min = "0.56.0"
 +  [[module.imports]]
 +    path = "github.com/gohugoio/gohugoioTheme"
 +
 +[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"
 +
 +
 +[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"
 +
 +# Default JPEG quality setting. Default is 75.
 +quality = 75
 +
 +anchor = "smart"
index 73af66164fb2b279af1da27b56f01279d2936b0e,0000000000000000000000000000000000000000..2be3f1ba847127624cb985c1f78e3056b6cedd9b
mode 100644,000000..100644
--- /dev/null
@@@ -1,13 -1,0 +1,13 @@@
-     getenv = ['^HUGO_', '^REPOSITORY_URL$']
 +
 +  enableInlineShortcodes = false
 +
 +  [exec]
 +    allow = ['^go$']
 +    osEnv = ['^PATH$']
 +
 +  [funcs]
-     urls = ['.*']
++    getenv = ['^HUGO_', '^REPOSITORY_URL$', '^BRANCH$']
 +
 +  [http]
 +    methods = ['(?i)GET|POST']
++    urls = ['.*']
index aed925d492e7dd5400bbec59d82981045b5c889e,0000000000000000000000000000000000000000..0aec55560d9d615196c4aecb559ae5962135a131
mode 100644,000000..100644
--- /dev/null
@@@ -1,69 -1,0 +1,69 @@@
- The defdault configuration is listed below. And build using features not whitelisted in the security policy will faill with a detailed message about what needs to be done. Most of these settings are whitelists (string or slice, [Regular Expressions](https://pkg.go.dev/regexp) or `none` which matches nothing).
 +---
 +title: Hugo's Security Model
 +description: A summary of Hugo's security model.
 +date: 2019-10-01
 +layout: single
 +keywords: ["Security", "Privacy"]
 +menu:
 +  docs:
 +    parent: "about"
 +    weight: 4
 +weight: 5
 +sections_weight: 5
 +draft: false
 +aliases: [/security/]
 +toc: true
 +---
 +
 +## Runtime Security
 +
 +Hugo produces static output, so once built, the runtime is the browser (assuming the output is HTML) and any server (API) that you integrate with.
 +
 +But when developing and building your site, the runtime is the `hugo` executable. Securing a runtime can be [a real challenge](https://blog.logrocket.com/how-to-protect-your-node-js-applications-from-malicious-dependencies-5f2e60ea08f9/).
 +
 +**Hugo's main approach is that of sandboxing and a security policy with strict defaults:**
 +
 +* Hugo has a virtual file system and only the main project (not third-party components) is allowed to mount directories or files outside the project root.
 +* Only the main project can walk symbolic links.
 +* User-defined components have only read-access to the filesystem.
 +* We shell out to some external binaries to support [Asciidoctor](/content-management/formats/#list-of-content-formats) and similar, but those binaries and their flags are predefined and disabled by default (see [Security Policy](#security-policy)). General functions to run arbitrary external OS commands have been [discussed](https://github.com/gohugoio/hugo/issues/796), but not implemented because of security concerns.
 +
 +
 +## Security Policy
 +
 +{{< new-in "0.91.0" >}}
 +
 +Hugo has a built-in security policy that restricts access to [os/exec](https://pkg.go.dev/os/exec), remote communication and similar.
 +
++The default configuration is listed below. And build using features not whitelisted in the security policy will faill with a detailed message about what needs to be done. Most of these settings are whitelists (string or slice, [Regular Expressions](https://pkg.go.dev/regexp) or `none` which matches nothing).
 +
 +{{< code-toggle config="security" />}}
 +
 +Note that these and other config settings in Hugo can be overridden by the OS environment. If you want to block all remote HTTP fetching of data:
 +
 +```
 +HUGO_SECURITY_HTTP_URLS=none hugo 
 +```
 +
 +## Dependency Security
 +
 +Hugo builds as a static binary using [Go Modules](https://github.com/golang/go/wiki/Modules) to manage its dependencies. Go Modules have several safeguards, one of them being the `go.sum` file. This is a database of the expected cryptographic checksums of all of your dependencies, including any transitive.
 +
 +[Hugo Modules](/hugo-modules/) is built on top of Go Modules functionality, and a Hugo project using Hugo Modules will have a `go.sum` file. We recommend that you commit this file to your version control system. The Hugo build will fail if there is a checksum mismatch, which would be an indication of [dependency tampering](https://julienrenaux.fr/2019/12/20/github-actions-security-risk/).
 +
 +## Web Application Security
 +
 +These are the security threats as defined by [OWASP](https://en.wikipedia.org/wiki/OWASP).
 +
 +For HTML output, this is the core security model:
 +
 +https://golang.org/pkg/html/template/#hdr-Security_Model
 +
 +In short:
 +
 +Templates authors (you) are trusted, but the data you send in is not.
 +This is why you sometimes need to use the _safe_ functions, such as `safeHTML`, to avoid escaping of data you know is safe.
 +There is one exception to the above, as noted in the documentation: If you enable inline shortcodes, you also say that the shortcodes and data handling in content files are trusted, as those macros are treated as pure text.
 +It may be worth adding that Hugo is a static site generator with no concept of dynamic user input.
 +
 +For content, the default Markdown renderer is [configured](/getting-started/configuration-markup) to remove or escape potentially unsafe content. This behavior can be reconfigured if you trust your content.
index 8f84145ac88db491e0eed9ff85d5e5437ce35e38,0000000000000000000000000000000000000000..0211f6fcd0f0f3c89da1673d3ef9211e4f276438
mode 100644,000000..100644
--- /dev/null
@@@ -1,346 -1,0 +1,346 @@@
- # default set.
 +---
 +title: "Image Processing"
 +description: "Image Page resources can be resized and cropped."
 +date: 2018-01-24T13:10:00-05:00
 +linktitle: "Image Processing"
 +categories: ["content management"]
 +keywords: [resources, images]
 +weight: 4004
 +draft: false
 +toc: true
 +menu:
 +  docs:
 +    parent: "content-management"
 +    weight: 32
 +---
 +
 +## The Image Page Resource
 +
 +The `image` is a [Page Resource]({{< relref "/content-management/page-resources" >}}), and the processing methods listed below do not work on images inside your `/static` folder.
 +
 +To print all images paths in a [Page Bundle]({{< relref "/content-management/organization#page-bundles" >}}):
 +
 +```go-html-template
 +{{ with .Resources.ByType "image" }}
 +{{ range . }}
 +{{ .RelPermalink }}
 +{{ end }}
 +{{ end }}
 +
 +```
 +
 +## The Image Resource
 +
 +The `image` resource can also be retrieved from a [global resource]({{< relref "/hugo-pipes/introduction#from-file-to-resource" >}})
 +
 +```go-html-template
 +{{- $image := resources.Get "images/logo.jpg" -}}
 +```
 +
 +## Image Processing Methods
 +
 +The `image` resource implements the  `Resize`, `Fit`, `Fill`, and `Filter` methods, each returning a transformed image using the specified dimensions and processing options. 
 +
 +{{% note %}}
 +Metadata (EXIF, IPTC, XMP, etc.) is not preserved during image transformation. Use the [`Exif`](#exif) method with the _original_ image to extract EXIF metadata from JPEG or TIFF images.
 +{{% /note %}}
 +
 +### Resize
 +
 +Resizes the image to the specified width and height.
 +
 +```go
 +// Resize to a width of 600px and preserve ratio
 +{{ $image := $resource.Resize "600x" }}
 +
 +// Resize to a height of 400px and preserve ratio
 +{{ $image := $resource.Resize "x400" }}
 +
 +// Resize to a width 600px and a height of 400px
 +{{ $image := $resource.Resize "600x400" }}
 +```
 +
 +### Fit
 +
 +Scale down the image to fit the given dimensions while maintaining aspect ratio. Both height and width are required.
 +
 +```go
 +{{ $image := $resource.Fit "600x400" }}
 +```
 +
 +### Fill
 +
 +Resize and crop the image to match the given dimensions. Both height and width are required.
 +
 +```go
 +{{ $image := $resource.Fill "600x400" }}
 +```
 +
 +### Filter
 +
 +Apply one or more filters to your image. See [Image Filters](/functions/images/#image-filters) for a full list.
 +
 +```go-html-template
 +{{ $img = $img.Filter (images.GaussianBlur 6) (images.Pixelate 8) }}
 +```
 +
 +The above can also be written in a more functional style using pipes:
 +
 +```go-html-template
 +{{ $img = $img | images.Filter (images.GaussianBlur 6) (images.Pixelate 8) }}
 +```
 +
 +The filters will be applied in the given order.
 +
 +Sometimes it can be useful to create the filter chain once and then reuse it:
 +
 +```go-html-template
 +{{ $filters := slice  (images.GaussianBlur 6) (images.Pixelate 8) }}
 +{{ $img1 = $img1.Filter $filters }}
 +{{ $img2 = $img2.Filter $filters }}
 +```
 +
 +### Exif
 +
 +Provides an [Exif](https://en.wikipedia.org/wiki/Exif) object with metadata about the image.
 +
 +Note that this is only supported for JPEG and TIFF images, so it's recommended to wrap the access with a `with`, e.g.:
 +
 +```go-html-template
 +{{ with $img.Exif }}
 +Date: {{ .Date }}
 +Lat/Long: {{ .Lat}}/{{ .Long }}
 +Tags:
 +{{ range $k, $v := .Tags }}
 +TAG: {{ $k }}: {{ $v }}
 +{{ end }}
 +{{ end }}
 +```
 +
 +Or individually access EXIF data with dot access, e.g.:
 +
 +```go-html-template
 +{{ with $src.Exif }}
 +  <ul>
 +      {{ with .Date }}<li>Date: {{ .Format "January 02, 2006" }}</li>{{ end }}
 +      {{ with .Tags.ApertureValue }}<li>Aperture: {{ lang.NumFmt 2 . }}</li>{{ end }}
 +      {{ with .Tags.BrightnessValue }}<li>Brightness: {{ lang.NumFmt 2 . }}</li>{{ end }}
 +      {{ with .Tags.ExposureTime }}<li>Exposure Time: {{ . }}</li>{{ end }}
 +      {{ with .Tags.FNumber }}<li>F Number: {{ . }}</li>{{ end }}
 +      {{ with .Tags.FocalLength }}<li>Focal Length: {{ . }}</li>{{ end }}
 +      {{ with .Tags.ISOSpeedRatings }}<li>ISO Speed Ratings: {{ . }}</li>{{ end }}
 +      {{ with .Tags.LensModel }}<li>Lens Model: {{ . }}</li>{{ end }}
 +  </ul>
 +{{ end }}
 +```
 +
 +Some fields may need to be formatted with [`lang.FormatNumberCustom`]({{< relref "functions/lang" >}}) function to prevent display like `Aperture: 2.278934289` instead of `Aperture: 2.28`.
 +
 +#### Exif fields
 +
 +Date
 +: "photo taken" date/time
 +
 +Lat
 +: "photo taken where", GPS latitude
 +
 +Long
 +: "photo taken where", GPS longitude
 +
 +See [Image Processing Config](#image-processing-config) for how to configure what gets included in Exif.
 +
 +## Image Processing Options
 +
 +In addition to the dimensions (e.g. `600x400`), Hugo supports a set of additional image options.
 +
 +### Background Color
 +
 +The background color to fill into the transparency layer. This is mostly useful when converting to a format that does not support transparency, e.g. `JPEG`.
 +
 +You can set the background color to use with a 3 or 6 digit hex code starting with `#`.
 +
 +```go
 +{{ $image.Resize "600x jpg #b31280" }}
 +```
 +
 +For color codes, see https://www.google.com/search?q=color+picker
 +
 +**Note** that you also set a default background color to use, see [Image Processing Config](#image-processing-config).
 +
 +### JPEG and WebP Quality
 +
 +Only relevant for JPEG and WebP images, values 1 to 100 inclusive, higher is better. Default is 75.
 +
 +```go
 +{{ $image.Resize "600x q50" }}
 +```
 +
 +{{< new-in "0.83.0" >}} WebP support was added in Hugo 0.83.0.
 +
 +### Hint
 +
 + {{< new-in "0.83.0" >}}
 +
 + {{< new-in "0.83.0" >}}
 +
 +Hint about what type of image this is. Currently only used when encoding to WebP.
 +
 +Default value is `photo`.
 +
 +Valid values are `picture`, `photo`, `drawing`, `icon`, or `text`.
 +
 +```go
 +{{ $image.Resize "600x webp drawing" }}
 +```
 +
 +### Rotate
 +
 +Rotates an image by the given angle counter-clockwise. The rotation will be performed first to get the dimensions correct. The main use of this is to be able to manually correct for [EXIF orientation](https://github.com/golang/go/issues/4341) of JPEG images.
 +
 +```go
 +{{ $image.Resize "600x r90" }}
 +```
 +
 +### Anchor
 +
 +Only relevant for the `Fill` method. This is useful for thumbnail generation where the main motive is located in, say, the left corner.
 +
 +Valid values are `Smart`, `Center`, `TopLeft`, `Top`, `TopRight`, `Left`, `Right`, `BottomLeft`, `Bottom`, `BottomRight`.
 +
 +Default value is `Smart`, which uses [Smartcrop](https://github.com/muesli/smartcrop) to determine the best crop.
 +
 +```go
 +{{ $image.Fill "300x200 BottomLeft" }}
 +```
 +
 +### Resample Filter
 +
 +Filter used in resizing. Default is `Box`, a simple and fast resampling filter appropriate for downscaling.
 +
 +Examples are: `Box`, `NearestNeighbor`, `Linear`, `Gaussian`.
 +
 +See https://github.com/disintegration/imaging for more. If you want to trade quality for faster processing, this may be a option to test.
 +
 +```go
 +{{ $image.Resize "600x400 Gaussian" }}
 +```
 +
 +### Target Format
 +
 +By default the images is encoded in the source format, but you can set the target format as an option.
 +
 +Valid values are `bmp`, `gif`, `jpeg`, `jpg`, `png`, `tif`, `tiff`, and `webp`.
 +
 +```go
 +{{ $image.Resize "600x jpg" }}
 +```
 +
 +{{< new-in "0.83.0" >}} WebP support was added in Hugo 0.83.0.
 +
 +## Image Processing Examples
 +
 +_The photo of the sunset used in the examples below is Copyright [Bjørn Erik Pedersen](https://commons.wikimedia.org/wiki/User:Bep) (Creative Commons Attribution-Share Alike 4.0 International license)_
 +
 +{{< imgproc sunset Resize "300x" />}}
 +
 +{{< imgproc sunset Fill "90x120 left" />}}
 +
 +{{< imgproc sunset Fill "90x120 right" />}}
 +
 +{{< imgproc sunset Fit "90x90" />}}
 +
 +{{< imgproc sunset Resize "300x q10" />}}
 +
 +This is the shortcode used in the examples above:
 +
 +{{< code file="layouts/shortcodes/imgproc.html" >}}
 +{{< readfile file="layouts/shortcodes/imgproc.html" >}}  
 +{{< /code >}}
 +
 +And it is used like this:
 +
 +```go-html-template
 +{{</* imgproc sunset Resize "300x" /*/>}}
 +```
 +
 +{{% note %}}
 +**Tip:** Note the self-closing shortcode syntax above. The `imgproc` shortcode can be called both with and without **inner content**.
 +{{% /note %}}
 +
 +## Image Processing Config
 +
 +You can configure an `imaging` section in `config.toml` with default image processing options:
 +
 +```toml
 +[imaging]
 +# Default resample filter used for resizing. Default is Box,
 +# a simple and fast averaging filter appropriate for downscaling.
 +# See https://github.com/disintegration/imaging
 +resampleFilter = "box"
 +
 +# Default JPEG or WebP quality setting. Default is 75.
 +quality = 75
 +
 +# Default hint about what type of image. Currently only used for WebP encoding.
 +# Default is "photo".
 +# Valid values are "picture", "photo", "drawing", "icon", or "text".
 +hint = "photo"
 +
 +# Anchor used when cropping pictures.
 +# Default is "smart" which does Smart Cropping, using https://github.com/muesli/smartcrop
 +# Smart Cropping is content aware and tries to find the best crop for each image.
 +# Valid values are Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight
 +anchor = "smart"
 +
 +# Default background color.
 +# Hugo will preserve transparency for target formats that supports it,
 +# but will fall back to this color for JPEG.
 +# Expects a standard HEX color string with 3 or 6 digits.
 +# See https://www.google.com/search?q=color+picker
 +bgColor = "#ffffff"
 +
 +[imaging.exif]
 + # Regexp matching the fields you want to Exclude from the (massive) set of Exif info
 +# available. As we cache this info to disk, this is for performance and
 +# disk space reasons more than anything.
 +# If you want it all, put ".*" in this config setting.
 +# Note that if neither this or ExcludeFields is set, Hugo will return a small
++# default set: GPS|Exif|Exposure[M|P|B]|Contrast|Resolution|Sharp|JPEG|Metering|Sensing|Saturation|ColorSpace|Flash|WhiteBalance
 +includeFields = ""
 +
 +# Regexp matching the Exif fields you want to exclude. This may be easier to use
 +# than IncludeFields above, depending on what you want.
 +excludeFields = ""
 +
 +# Hugo extracts the "photo taken" date/time into .Date by default.
 +# Set this to true to turn it off.
 +disableDate = false
 +
 +# Hugo extracts the "photo taken where" (GPS latitude and longitude) into
 +# .Long and .Lat. Set this to true to turn it off.
 +disableLatLong = false
 +```
 +
 +## Smart Cropping of Images
 +
 +By default, Hugo will use [Smartcrop](https://github.com/muesli/smartcrop), a library created by [muesli](https://github.com/muesli), when cropping images with `.Fill`. You can set the anchor point manually, but in most cases the smart option will make a good choice. And we will work with the library author to improve this in the future.
 +
 +An example using the sunset image from above:
 +
 +{{< imgproc sunset Fill "200x200 smart" />}}
 +
 +## Image Processing Performance Consideration
 +
 +Processed images are stored below `<project-dir>/resources` (can be set with `resourceDir` config setting). This folder is deliberately placed in the project, as it is recommended to check these into source control as part of the project. These images are not "Hugo fast" to generate, but once generated they can be reused.
 +
 +If you change your image settings (e.g. size), remove or rename images etc., you will end up with unused images taking up space and cluttering your project.
 +
 +To clean up, run:
 +
 +```bash
 +hugo --gc
 +```
 +
 +{{% note %}}
 +**GC** is short for **Garbage Collection**.
 +{{% /note %}}
index 350d005eeafebd58058675f3bc3797aec4e3a981,0000000000000000000000000000000000000000..92c6ff0da0400dadd1d580ee47f501e310d5e8a1
mode 100644,000000..100644
--- /dev/null
@@@ -1,229 -1,0 +1,229 @@@
- ### Grayscale
 +---
 +title: Image Filters
 +description: The images namespace provides a list of filters and other image related functions.
 +date: 2017-02-01
 +categories: [functions]
 +aliases: [/functions/imageconfig/]
 +menu:
 +  docs:
 +    parent: "functions"
 +keywords: [images]
 +toc: true
 +---
 +
 +See [images.Filter](#filter) for how to apply these filters to an image.
 +
 +## Overlay
 +
 +{{< new-in "0.80.0" >}}
 +
 +{{% funcsig %}}
 +images.Overlay SRC X Y
 +{{% /funcsig %}}
 +
 +Overlay creates a filter that overlays the source image at position x y, e.g:
 +
 +
 +```go-html-template
 +{{ $logoFilter := (images.Overlay $logo 50 50 ) }}
 +{{ $img := $img | images.Filter $logoFilter }}
 +```
 +
 +A shorter version of the above, if you only need to apply the filter once:
 +
 +```go-html-template
 +{{ $img := $img.Filter (images.Overlay $logo 50 50 )}}
 +```
 +
 +The above will overlay `$logo` in the upper left corner of `$img` (at position `x=50, y=50`).
 +
 +## Text
 +
 +{{< new-in "0.90.0" >}}
 +
 +Using the `Text` filter, you can add text to an image.
 +
 +{{% funcsig %}}
 +images.Text TEXT DICT)
 +{{% /funcsig %}}
 +
 +The following example will add the text `Hugo rocks!` to the image with the specified color, size and position.
 +
 +```go-html-template
 +{{ $img := resources.Get "/images/background.png"}}
 +{{ $img = $img.Filter (images.Text "Hugo rocks!" (dict
 +    "color" "#ffffff"
 +    "size" 60
 +    "linespacing" 2
 +    "x" 10
 +    "y" 20
 +))}}
 +```
 +
 +You can load a custom font if needed. Load the font as a Hugo `Resource` and set it as an option:
 +
 +```go-html-template
 +
 +{{ $font := resources.Get "https://github.com/google/fonts/raw/main/apache/roboto/static/Roboto-Black.ttf" }}
 +{{ $img := resources.Get "/images/background.png"}}
 +{{ $img = $img.Filter (images.Text "Hugo rocks!" (dict
 +    "font" $font
 +))}}
 +```
 +
 +
 +## Brightness
 +
 +{{% funcsig %}}
 +images.Brightness PERCENTAGE
 +{{% /funcsig %}}
 +
 +Brightness creates a filter that changes the brightness of an image.
 +The percentage parameter must be in range (-100, 100).
 +
 +### ColorBalance
 +
 +{{% funcsig %}}
 +images.ColorBalance PERCENTAGERED PERCENTAGEGREEN PERCENTAGEBLUE
 +{{% /funcsig %}}
 +
 +ColorBalance creates a filter that changes the color balance of an image.
 +The percentage parameters for each color channel (red, green, blue) must be in range (-100, 500).
 +
 +## Colorize
 +
 +{{% funcsig %}}
 +images.Colorize HUE SATURATION PERCENTAGE
 +{{% /funcsig %}}
 +
 +Colorize creates a filter that produces a colorized version of an image.
 +The hue parameter is the angle on the color wheel, typically in range (0, 360).
 +The saturation parameter must be in range (0, 100).
 +The percentage parameter specifies the strength of the effect, it must be in range (0, 100).
 +
 +## Contrast
 +
 +{{% funcsig %}}
 +images.Contrast PERCENTAGE
 +{{% /funcsig %}}
 +
 +Contrast creates a filter that changes the contrast of an image.
 +The percentage parameter must be in range (-100, 100).
 +
 +## Gamma
 +
 +{{% funcsig %}}
 +images.Gamma GAMMA
 +{{% /funcsig %}}
 +
 +Gamma creates a filter that performs a gamma correction on an image.
 +The gamma parameter must be positive. Gamma = 1 gives the original image.
 +Gamma less than 1 darkens the image and gamma greater than 1 lightens it.
 +
 +## GaussianBlur
 +
 +{{% funcsig %}}
 +images.GaussianBlur SIGMA
 +{{% /funcsig %}}
 +
 +GaussianBlur creates a filter that applies a gaussian blur to an image.
 +
++## Grayscale
 +
 +{{% funcsig %}}
 +images.Grayscale
 +{{% /funcsig %}}
 +
 +Grayscale creates a filter that produces a grayscale version of an image.
 +
 +## Hue
 +
 +{{% funcsig %}}
 +images.Hue SHIFT
 +{{% /funcsig %}}
 +
 +Hue creates a filter that rotates the hue of an image.
 +The hue angle shift is typically in range -180 to 180.
 +
 +## Invert
 +
 +{{% funcsig %}}
 +images.Invert
 +{{% /funcsig %}}
 +
 +Invert creates a filter that negates the colors of an image.
 +
 +## Pixelate
 +
 +{{% funcsig %}}
 +images.Pixelate SIZE
 +{{% /funcsig %}}
 +
 +Pixelate creates a filter that applies a pixelation effect to an image.
 +
 +## Saturation
 +
 +{{% funcsig %}}
 +images.Saturation PERCENTAGE
 +{{% /funcsig %}}
 +
 +Saturation creates a filter that changes the saturation of an image.
 +
 +## Sepia
 +
 +{{% funcsig %}}
 +images.Sepia PERCENTAGE
 +{{% /funcsig %}}
 +
 +Sepia creates a filter that produces a sepia-toned version of an image.
 +
 +## Sigmoid
 +
 +{{% funcsig %}}
 +images.Sigmoid MIDPOINT FACTOR
 +{{% /funcsig %}}
 +
 +Sigmoid creates a filter that changes the contrast of an image using a sigmoidal function and returns the adjusted image.
 +It's a non-linear contrast change useful for photo adjustments as it preserves highlight and shadow detail.
 +
 +## UnsharpMask
 +
 +{{% funcsig %}}
 +images.UnsharpMask SIGMA AMOUNT THRESHOLD
 +{{% /funcsig %}}
 +
 +UnsharpMask creates a filter that sharpens an image.
 +The sigma parameter is used in a gaussian function and affects the radius of effect.
 +Sigma must be positive. Sharpen radius roughly equals 3 * sigma.
 +The amount parameter controls how much darker and how much lighter the edge borders become. Typically between 0.5 and 1.5.
 +The threshold parameter controls the minimum brightness change that will be sharpened. Typically between 0 and 0.05.
 +
 +## Other Functions
 +
 +### Filter
 +
 +{{% funcsig %}}
 +IMAGE | images.Filter FILTERS...
 +{{% /funcsig %}}
 +
 +Can be used to apply a set of filters to an image:
 +
 +```go-html-template
 +{{ $img := $img | images.Filter (images.GaussianBlur 6) (images.Pixelate 8) }}
 +```
 +
 +Also see the [Filter Method](/content-management/image-processing/#filter).
 +
 +### ImageConfig
 +
 +Parses the image and returns the height, width, and color model.
 +
 +{{% funcsig %}}
 +images.ImageConfig PATH
 +{{% /funcsig %}}
 +
 +```go-html-template
 +{{ with (imageConfig "favicon.ico") }}
 +favicon.ico: {{.Width}} x {{.Height}}
 +{{ end }}
 +```
index 7cace938a71d9c1cb11d583c1450ea9719a8eecb,0000000000000000000000000000000000000000..babf9cdb86d1558ff2e490e9fe9431418809d0d6
mode 100755,000000..100755
--- /dev/null
@@@ -1,120 -1,0 +1,126 @@@
- ## Get Resource with resources.Get
 +---
 +title: Hugo Pipes Introduction
 +linkTitle: Hugo Pipes
 +description: Hugo Pipes is Hugo's asset processing set of functions.
 +date: 2018-07-14
 +publishdate: 2018-07-14
 +lastmod: 2018-07-14
 +categories: [asset management]
 +keywords: []
 +menu:
 +  docs:
 +    parent: "pipes"
 +    weight: 20
 +weight: 01
 +sections_weight: 01
 +draft: false
 +toc: true
 +aliases: [/assets/]
 +---
 +
- In order to process an asset with Hugo Pipes, it must be retrieved as a `Resource` using `resources.Get`. The first argument can be either a local the path to file relative to the `asset` directory/directories or a remote URL.
++## Get Resource with resources.Get and resources.GetRemote
 +
- {{ $remote := resources.Get "https://www.example.com/styles.scss" }}
++In order to process an asset with Hugo Pipes, it must be retrieved as a `Resource` using `resources.Get` or `resources.GetRemote`.
++
++With `resources.Get`, the first argument is a local path relative to the `assets` directory/directories:
 +
 +```go-html-template
 +{{ $local := resources.Get "sass/main.scss" }}
- `resources.Get` will always return `nil` if the resource could not be found.
 +```
 +
- {{< new-in "0.90.1" >}}
++With `resources.GetRemote`, the first argument is a remote URL:
++
++```go-html-template
++{{ $remote := resources.GetRemote "https://www.example.com/styles.scss" }}
++```
++
++`resources.Get` and `resources.GetRemote` return `nil` if the resource is not found.
 +
 +### Error Handling
 +
- The return value from `resources.Get` includes an `.Err` method that will return an error if the call failed. If you want to just log any error as a `WARNING` you can use a construct similar to the one below.
++{{< new-in "0.91.0" >}}
 +
- {{ with resources.Get "https://gohugo.io/images/gohugoio-card-1.png" }}
++The return value from `resources.GetRemote` includes an `.Err` method that will return an error if the call failed. If you want to just log any error as a `WARNING` you can use a construct similar to the one below.
 +
 +```go-html-template
- When fetching a remote `Resource`, `resources.Get` takes an optional options map as the last argument, e.g.:
++{{ with resources.GetRemote "https://gohugo.io/images/gohugoio-card-1.png" }}
 +  {{ with .Err }}
 +    {{ warnf "%s" . }}
 +  {{ else }}
 +    <img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}" alt="">
 +  {{ end }}
 +{{ end }}
 +```
 +
 +Note that if you do not handle `.Err` yourself, Hugo will fail the build the first time you start using the `Resource` object.
 +
 +### Remote Options
 +
- {{ $resource := resources.Get "https://example.org/api" (dict "headers" (dict "Authorization" "Bearer abcd"))  }}
++When fetching a remote `Resource`, `resources.GetRemote` takes an optional options map as the last argument, e.g.:
 +
 +```go-html-template
- {{ $resource := resources.Get "https://example.org/api"  (dict "headers" (dict "X-List" (slice "a" "b" "c")))  }}
++{{ $resource := resources.GetRemote "https://example.org/api" (dict "headers" (dict "Authorization" "Bearer abcd"))  }}
 +```
 +
 +If you need multiple values for the same header key, use a slice:
 +
 +```go-html-template
- {{ $postResponse := resources.Get "https://example.org/api"  (dict 
++{{ $resource := resources.GetRemote "https://example.org/api"  (dict "headers" (dict "X-List" (slice "a" "b" "c")))  }}
 +```
 +
 +You can also change the request method and set the request body:
 +
 +```go-html-template
- Remote resources fetched with `resources.Get` will be cached on disk. See [Configure File Caches](/getting-started/configuration/#configure-file-caches) for details.
++{{ $postResponse := resources.GetRemote "https://example.org/api"  (dict 
 +    "method" "post"
 +    "body" `{"complete": true}` 
 +    "headers" (dict 
 +        "Content-Type" "application/json"
 +    )
 +)}}
 +```
 +
 +### Caching of Remote Resources
 +
++Remote resources fetched with `resources.GetRemote` will be cached on disk. See [Configure File Caches](/getting-started/configuration/#configure-file-caches) for details.
 +
 +## Asset directory
 +
 +Asset files must be stored in the asset directory. This is `/assets` by default, but can be configured via the configuration file's `assetDir` key.
 +
- Assets will only be published (to `/public`) if `.Permalink` or `.RelPermalink` is used. You can use `.Content` to inline the asset.
 +### Asset Publishing
 +
++Hugo publishes assets to the to the `publishDir` (typically `public`) when you invoke `.Permalink`, `.RelPermalink`, or `.Publish`. You can use `.Content` to inline the asset.
 +
 +## Go Pipes
 +
 +For improved readability, the Hugo Pipes examples of this documentation will be written using [Go Pipes](/templates/introduction/#pipes):
 +
 +```go-html-template
 +{{ $style := resources.Get "sass/main.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
 +<link rel="stylesheet" href="{{ $style.Permalink }}">
 +```
 +
 +## Method aliases
 +
 +Each Hugo Pipes `resources` transformation method uses a __camelCased__ alias (`toCSS` for `resources.ToCSS`).
 +Non-transformation methods deprived of such aliases are `resources.Get`, `resources.FromString`, `resources.ExecuteAsTemplate` and `resources.Concat`.
 +
 +The example above can therefore also be written as follows:
 +
 +```go-html-template
 +{{ $style := resources.Get "sass/main.scss" | toCSS | minify | fingerprint }}
 +<link rel="stylesheet" href="{{ $style.Permalink }}">
 +```
 +
 +## Caching
 +
 +Hugo Pipes invocations are cached based on the entire _pipe chain_.
 +
 +An example of a pipe chain is:
 +
 +```go-html-template
 +{{ $mainJs := resources.Get "js/main.js" | js.Build "main.js" | minify | fingerprint }}
 +```
 +
 +The pipe chain is only invoked the first time it is encountered in a site build, and results are otherwise loaded from cache. As such, Hugo Pipes can be used in templates which are executed thousands or millions of times without negatively impacting the build performance.
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..38bd753575dbf465553c6971d7ae049d0b025353
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,10 @@@
++---
++title: "Release Notes now on GitHub Only"
++date: 2021-12-17T12:22:47+01:00
++slug: "no-more-releasenotes-here"
++description: "Hugo Release Notes now gets released on GitHub Only"
++
++---
++
++For details about release notes, you need to go here: https://github.com/gohugoio/hugo/releases -- see this for an Atom feed: https://github.com/gohugoio/hugo/releases.atom
++
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..fddcb22eb00d494cf0f9d8a2f24f571d464241c1
new file mode 100644 (file)
Binary files differ
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..03654bf2875f61d64b5aeb9e0805e4eb059fa568
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,9 @@@
++---
++title: "Fixes the “Stuck on Build” Bug"
++description: "Hugo 0.91.2 is the last release before Christmas!"
++date: 2021-12-23T17:47:41+01:00
++---
++
++Read the full change log on [GitHub](https://github.com/gohugoio/hugo/releases/tag/v0.91.2).
++
++**Merry Christmas to all of you!**
index 441cc2f10150f58c38dd3e3a11221458be620406,0000000000000000000000000000000000000000..cb3de7f9fa9e3dbe4d5673c44b47568d05e21fb3
mode 100644,000000..100644
--- /dev/null
@@@ -1,251 -1,0 +1,251 @@@
- "1974 – Modern American Music … Period! The Criteria Sessions",
- "1974 – Jaco",
 +---
 +title: Data Templates
 +linktitle:
 +description: In addition to Hugo's built-in variables, you can specify your own custom data in templates or shortcodes that pull from both local and dynamic sources.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-03-12
 +categories: [templates]
 +keywords: [data,dynamic,csv,json,toml,yaml,xml]
 +menu:
 +  docs:
 +    parent: "templates"
 +    weight: 80
 +weight: 80
 +sections_weight: 80
 +draft: false
 +aliases: [/extras/datafiles/,/extras/datadrivencontent/,/doc/datafiles/]
 +toc: true
 +---
 +
 +<!-- begin data files -->
 +
 +Hugo supports loading data from YAML, JSON, XML, and TOML files located in the `data` directory in the root of your Hugo project.
 +
 +{{< youtube FyPgSuwIMWQ >}}
 +
 +## The Data Folder
 +
 +The `data` folder is where you can store additional data for Hugo to use when generating your site. Data files aren't used to generate standalone pages; rather, they're meant to be supplemental to content files. This feature can extend the content in case your front matter fields grow out of control. Or perhaps you want to show a larger dataset in a template (see example below). In both cases, it's a good idea to outsource the data in their own files.
 +
 +These files must be YAML, JSON, XML, or TOML files (using the `.yml`, `.yaml`, `.json`, `.xml`, or `.toml` extension). The data will be accessible as a `map` in the `.Site.Data` variable.
 +
 +## Data Files in Themes
 +
 +Data Files can also be used in [Hugo themes][themes] but note that theme data files follow the same logic as other template files in the [Hugo lookup order][lookup] (i.e., given two files with the same name and relative path, the file in the root project `data` directory will override the file in the `themes/<THEME>/data` directory).
 +
 +Therefore, theme authors should take care to not include data files that could be easily overwritten by a user who decides to [customize a theme][customize]. For theme-specific data items that shouldn't be overridden, it can be wise to prefix the folder structure with a namespace; e.g. `mytheme/data/<THEME>/somekey/...`. To check if any such duplicate exists, run hugo with the `-v` flag.
 +
 +The keys in the map created with data templates from data files will be a dot-chained set of `path`, `filename`, and `key` in file (if applicable).
 +
 +This is best explained with an example:
 +
 +## Example: Jaco Pastorius' Solo Discography
 +
 +[Jaco Pastorius](https://en.wikipedia.org/wiki/Jaco_Pastorius_discography) was a great bass player, but his solo discography is short enough to use as an example. [John Patitucci](https://en.wikipedia.org/wiki/John_Patitucci) is another bass giant.
 +
 +The example below is a bit contrived, but it illustrates the flexibility of data Files. This example uses TOML as its file format with the two following data files:
 +
 +* `data/jazz/bass/jacopastorius.toml`
 +* `data/jazz/bass/johnpatitucci.toml`
 +
 +`jacopastorius.toml` contains the content below. `johnpatitucci.toml` contains a similar list:
 +
 +{{< code-toggle file="jacopastorius" >}}
 +discography = [
++"1974 - Modern American Music … Period! The Criteria Sessions",
++"1974 - Jaco",
 +"1976 - Jaco Pastorius",
 +"1981 - Word of Mouth",
 +"1981 - The Birthday Concert (released in 1995)",
 +"1982 - Twins I & II (released in 1999)",
 +"1983 - Invitation",
 +"1986 - Broadway Blues (released in 1998)",
 +"1986 - Honestly Solo Live (released in 1990)",
 +"1986 - Live In Italy (released in 1991)",
 +"1986 - Heavy'n Jazz (released in 1992)",
 +"1991 - Live In New York City, Volumes 1-7.",
 +"1999 - Rare Collection (compilation)",
 +"2003 - Punk Jazz: The Jaco Pastorius Anthology (compilation)",
 +"2007 - The Essential Jaco Pastorius (compilation)"
 +]
 +{{< /code-toggle >}}
 +
 +The list of bass players can be accessed via `.Site.Data.jazz.bass`, a single bass player by adding the filename without the suffix, e.g. `.Site.Data.jazz.bass.jacopastorius`.
 +
 +You can now render the list of recordings for all the bass players in a template:
 +
 +```
 +{{ range $.Site.Data.jazz.bass }}
 +   {{ partial "artist.html" . }}
 +{{ end }}
 +```
 +
 +And then in the `partials/artist.html`:
 +
 +```
 +<ul>
 +{{ range .discography }}
 +  <li>{{ . }}</li>
 +{{ end }}
 +</ul>
 +```
 +
 +Discover a new favorite bass player? Just add another `.toml` file in the same directory.
 +
 +## Example: Accessing Named Values in a Data File
 +
 +Assume you have the following data structure in your `User0123.[yml|toml|xml|json]` data file located directly in `data/`:
 +
 +{{< code-toggle file="User0123" >}}
 +Name: User0123
 +"Short Description": "He is a **jolly good** fellow."
 +Achievements:
 +  - "Can create a Key, Value list from Data File"
 +  - "Learns Hugo"
 +  - "Reads documentation"
 +{{</ code-toggle >}}
 +
 +You can use the following code to render the `Short Description` in your layout:
 +
 +```
 +<div>Short Description of {{.Site.Data.User0123.Name}}: <p>{{ index .Site.Data.User0123 "Short Description" | markdownify }}</p></div>
 +```
 +
 +Note the use of the [`markdownify` template function][markdownify]. This will send the description through the Blackfriday Markdown rendering engine.
 +
 +
 +## Get Remote Data
 +
 +Use `getJSON` or `getCSV` to get remote data:
 +
 +```
 +{{ $dataJ := getJSON "url" }}
 +{{ $dataC := getCSV "separator" "url" }}
 +```
 +
 +If you use a prefix or postfix for the URL, the functions accept [variadic arguments][variadic]:
 +
 +```
 +{{ $dataJ := getJSON "url prefix" "arg1" "arg2" "arg n" }}
 +{{ $dataC := getCSV  "separator" "url prefix" "arg1" "arg2" "arg n" }}
 +```
 +
 +The separator for `getCSV` must be put in the first position and can only be one character long.
 +
 +All passed arguments will be joined to the final URL:
 +
 +```
 +{{ $urlPre := "https://api.github.com" }}
 +{{ $gistJ := getJSON $urlPre "/users/GITHUB_USERNAME/gists" }}
 +```
 +
 +This will resolve internally to the following:
 +
 +```
 +{{ $gistJ := getJSON "https://api.github.com/users/GITHUB_USERNAME/gists" }}
 +```
 +
 +### Add HTTP headers
 +
 +{{< new-in "0.84.0" >}} Both `getJSON` and `getCSV` takes an optional map as the last argument, e.g.:
 +
 +```
 +{{ $data := getJSON "https://example.org/api" (dict "Authorization" "Bearer abcd")  }}
 +```
 +
 +If you need multiple values for the same header key, use a slice:
 +
 +```
 +{{ $data := getJSON "https://example.org/api" (dict "X-List" (slice "a" "b" "c"))  }}
 +```
 +
 +### Example for CSV files
 +
 +For `getCSV`, the one-character-long separator must be placed in the first position followed by the URL. The following is an example of creating an HTML table in a [partial template][partials] from a published CSV:
 +
 +{{< code file="layouts/partials/get-csv.html" >}}
 +  <table>
 +    <thead>
 +      <tr>
 +      <th>Name</th>
 +      <th>Position</th>
 +      <th>Salary</th>
 +      </tr>
 +    </thead>
 +    <tbody>
 +    {{ $url := "https://example.com/finance/employee-salaries.csv" }}
 +    {{ $sep := "," }}
 +    {{ range $i, $r := getCSV $sep $url }}
 +      <tr>
 +        <td>{{ index $r 0 }}</td>
 +        <td>{{ index $r 1 }}</td>
 +        <td>{{ index $r 2 }}</td>
 +      </tr>
 +    {{ end }}
 +    </tbody>
 +  </table>
 +{{< /code >}}
 +
 +The expression `{{index $r number}}` must be used to output the nth-column from the current row.
 +
 +### Cache URLs
 +
 +Each downloaded URL will be cached in the default folder `$TMPDIR/hugo_cache/`. The variable `$TMPDIR` will be resolved to your system-dependent temporary directory.
 +
 +With the command-line flag `--cacheDir`, you can specify any folder on your system as a caching directory.
 +
 +You can also set `cacheDir` in the [main configuration file][config].
 +
 +If you don't like caching at all, you can fully disable caching with the command line flag `--ignoreCache`.
 +
 +### Authentication When Using REST URLs
 +
 +Currently, you can only use those authentication methods that can be put into an URL. [OAuth][] and other authentication methods are not implemented.
 +
 +## Load Local files
 +
 +To load local files with `getJSON` and `getCSV`, the source files must reside within Hugo's working directory. The file extension does not matter, but the content does.
 +
 +It applies the same output logic as above in [Call the Functions with a URL](#call-the-functions-with-a-url).
 +
 +{{% note %}}
 +The local CSV files to be loaded using `getCSV` must be located **outside** of the `data` directory.
 +{{% /note %}}
 +
 +## LiveReload with Data Files
 +
 +There is no chance to trigger a [LiveReload][] when the content of a URL changes. However, when a *local* file changes (i.e., `data/*` and `themes/<THEME>/data/*`), a LiveReload will be triggered. Symlinks are not supported. Note too that because downloading of data takes a while, Hugo stops processing your Markdown files until the data download has completed.
 +
 +{{% warning "URL Data and LiveReload" %}}
 +If you change any local file and the LiveReload is triggered, Hugo will read the data-driven (URL) content from the cache. If you have disabled the cache (i.e., by running the server with `hugo server --ignoreCache`), Hugo will re-download the content every time LiveReload triggers. This can create *huge* traffic. You may reach API limits quickly.
 +{{% /warning %}}
 +
 +## Examples of Data-driven Content
 +
 +- Photo gallery JSON powered: [https://github.com/pcdummy/hugo-lightslider-example](https://github.com/pcdummy/hugo-lightslider-example)
 +- GitHub Starred Repositories [in a post](https://github.com/SchumacherFM/blog-cs/blob/master/content%2Fposts%2Fgithub-starred.md) using data-driven content in a [custom short code](https://github.com/SchumacherFM/blog-cs/blob/master/layouts%2Fshortcodes%2FghStarred.html).
 +
 +## Specs for Data Formats
 +
 +* [TOML Spec][toml]
 +* [YAML Spec][yaml]
 +* [JSON Spec][json]
 +* [CSV Spec][csv]
 +* [XML Spec][xml]
 +
 +[config]: /getting-started/configuration/
 +[csv]: https://tools.ietf.org/html/rfc4180
 +[customize]: /themes/customizing/
 +[json]: https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf "Specification for JSON, JavaScript Object Notation"
 +[LiveReload]: /getting-started/usage/#livereload
 +[lookup]: /templates/lookup-order/
 +[markdownify]: /functions/markdownify/
 +[OAuth]: https://en.wikipedia.org/wiki/OAuth
 +[partials]: /templates/partials/
 +[themes]: /themes/
 +[toml]: https://github.com/toml-lang/toml
 +[variadic]: https://en.wikipedia.org/wiki/Variadic_function
 +[vars]: /variables/
 +[yaml]: https://yaml.org/spec/
 +[xml]: https://www.w3.org/XML/
index 1769fa688d12dbd980090e94c20782af0498eb04,0000000000000000000000000000000000000000..d8f3daece141ff3f22115e7e8971aed5330e45cc
mode 100644,000000..100644
--- /dev/null
@@@ -1,54 -1,0 +1,54 @@@
- : the file extension of the content file (e.g., `md`); this can also be called using `.File.Extension` as well. Note that it is *only* the extension without `.`.
 +---
 +title: File Variables
 +linktitle:
 +description: "You can access filesystem-related data for a content file in the `.File` variable."
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [variables and params]
 +keywords: [files]
 +draft: false
 +menu:
 +  docs:
 +    parent: "variables"
 +    weight: 40
 +weight: 40
 +sections_weight: 40
 +aliases: [/variables/file-variables/]
 +toc: false
 +---
 +
 +{{% note "Rendering Local Files" %}}
 +For information on creating shortcodes and templates that tap into Hugo's file-related feature set, see [Local File Templates](/templates/files/).
 +{{% /note %}}
 +
 +The `.File` object contains the following fields:
 +
 +.File.Path
 +: the original relative path of the page, relative to the content dir (e.g., `posts/foo.en.md`)
 +
 +.File.LogicalName
 +: the name of the content file that represents a page (e.g., `foo.en.md`)
 +
 +.File.TranslationBaseName
 +: the filename without extension or optional language identifier (e.g., `foo`)
 +
 +.File.ContentBaseName
 +: is a either TranslationBaseName or name of containing folder if file is a leaf bundle.
 +
 +.File.BaseFileName
 +: the filename without extension (e.g., `foo.en`)
 +
 +.File.Ext
++: the file extension of the content file (e.g., `md`).
 +
 +.File.Lang
 +: the language associated with the given file if Hugo's [Multilingual features][multilingual] are enabled (e.g., `en`)
 +
 +.File.Dir
 +: given the path `content/posts/dir1/dir2/`, the relative directory path of the content file will be returned (e.g., `posts/dir1/dir2/`). Note that the path separator (`\` or `/`) could be dependent on the operating system.
 +
 +.File.UniqueID
 +: the MD5-checksum of the content file's path.
 +
 +[Multilingual]: /content-management/multilingual/
index 59ee9ac889e4cbbf854c050ed346c51d134ce70a,0000000000000000000000000000000000000000..58a285fd97162299caaec3969e7325b23af96cc1
mode 100644,000000..100644
--- /dev/null
@@@ -1,58 -1,0 +1,58 @@@
- : the author's name, respecting `.mailmap`
 +---
 +title: Git Info Variables
 +linktitle: Git Variables
 +description: Get the last Git revision information for every content file.
 +date: 2017-03-12
 +publishdate: 2017-03-12
 +lastmod: 2017-03-12
 +categories: [variables and params]
 +keywords: [git]
 +draft: false
 +menu:
 +  docs:
 +    parent: "variables"
 +    weight: 70
 +weight: 70
 +sections_weight: 70
 +aliases: [/extras/gitinfo/]
 +toc: false
 +wip: false
 +---
 +
 +{{% note "`.GitInfo` Performance Considerations"  %}}
 +Hugo's Git integrations should be fairly performant but *can* increase your build time. This will depend on the size of your Git history.
 +{{% /note %}}
 +
 +## `.GitInfo` Prerequisites
 +
 +1. The Hugo site must be in a Git-enabled directory.
 +2. The Git executable must be installed and in your system `PATH`.
 +3. The `.GitInfo` feature must be enabled in your Hugo project by passing `--enableGitInfo` flag on the command line or by setting `enableGitInfo` to `true` in your [site's configuration file][configuration].
 +
 +## The `.GitInfo` Object
 +
 +The `GitInfo` object contains the following fields:
 +
 +.AbbreviatedHash
 +: the abbreviated commit hash (e.g., `866cbcc`)
 +
 +.AuthorName
- : the author's email address, respecting `.mailmap`
++: the author's name, respecting [`.mailmap`](https://git-scm.com/docs/gitmailmap)
 +
 +.AuthorEmail
++: the author's email address, respecting [`.mailmap`](https://git-scm.com/docs/gitmailmap)
 +
 +.AuthorDate
 +: the author date
 +
 +.Hash
 +: the commit hash (e.g., `866cbccdab588b9908887ffd3b4f2667e94090c3`)
 +
 +.Subject
 +: commit message subject (e.g., `tpl: Add custom index function`)
 +
 +## `.Lastmod`
 +
 +If the `.GitInfo` feature is enabled, `.Lastmod` (on `Page`) is fetched from Git i.e. `.GitInfo.AuthorDate`. This behaviour can be changed by adding your own [front matter configuration for dates](/getting-started/configuration/#configure-front-matter).
 +
 +[configuration]: /getting-started/configuration/
index 4ba4d3d915bbef106d9ec109f33c58036742ac82,0000000000000000000000000000000000000000..79b1447f8e489baa63095ae142e1ee3e34cc17df
mode 100644,000000..100644
--- /dev/null
@@@ -1,307 -1,0 +1,311 @@@
 +---
 +title: Page Variables
 +linktitle:
 +description: Page-level variables are defined in a content file's front matter, derived from the content's file location, or extracted from the content body itself.
 +date: 2017-02-01
 +publishdate: 2017-02-01
 +lastmod: 2017-02-01
 +categories: [variables and params]
 +keywords: [pages]
 +draft: false
 +menu:
 +  docs:
 +    title: "variables defined by a page"
 +    parent: "variables"
 +    weight: 20
 +weight: 20
 +sections_weight: 20
 +aliases: []
 +toc: true
 +---
 +
 +The following is a list of page-level variables. Many of these will be defined in the front matter, derived from file location, or extracted from the content itself.
 +
 +{{% note "`.Scratch`" %}}
 +See [`.Scratch`](/functions/scratch/) for page-scoped, writable variables.
 +{{% /note %}}
 +
 +## Page Variables
 +
 +.AlternativeOutputFormats
 +: contains all alternative formats for a given page; this variable is especially useful `link rel` list in your site's `<head>`. (See [Output Formats](/templates/output-formats/).)
 +
 +.Aliases
 +: aliases of this page
 +
++.BundleType
++: the [bundle] type: `leaf`, `branch`, or an empty string if the page is not a bundle.
++
 +.Content
 +: the content itself, defined below the front matter.
 +
 +.Data
 +: the data specific to this type of page.
 +
 +.Date
 +: the date associated with the page; `.Date` pulls from the `date` field in a content's front matter. See also `.ExpiryDate`, `.PublishDate`, and `.Lastmod`.
 +
 +.Description
 +: the description for the page.
 +
 +.Dir
 +: the path of the folder containing this content file. The path is relative to the `content` folder.
 +
 +.Draft
 +: a boolean, `true` if the content is marked as a draft in the front matter.
 +
 +.ExpiryDate
 +: the date on which the content is scheduled to expire; `.ExpiryDate` pulls from the `expirydate` field in a content's front matter. See also `.PublishDate`, `.Date`, and `.Lastmod`.
 +
 +.File
 +: filesystem-related data for this content file. See also [File Variables][].
 +
 +.FuzzyWordCount
 +: the approximate number of words in the content.
 +
 +.Hugo
 +: see [Hugo Variables](/variables/hugo/).
 +
 +.IsHome
 +: `true` in the context of the [homepage](/templates/homepage/).
 +
 +.IsNode
 +: always `false` for regular content pages.
 +
 +.IsPage
 +: always `true` for regular content pages.
 +
 +.IsSection
 +: `true` if [`.Kind`](/templates/section-templates/#page-kinds) is `section`.
 +
 +.IsTranslated
 +: `true` if there are translations to display.
 +
 +.Keywords
 +: the meta keywords for the content.
 +
 +.Kind
 +: the page's *kind*. Possible return values are `page`, `home`, `section`, `taxonomy`, or `term`. Note that there are also `RSS`, `sitemap`, `robotsTXT`, and `404` kinds, but these are only available during the rendering of each of these respective page's kind and therefore *not* available in any of the `Pages` collections.
 +
 +.Language
 +: a language object that points to the language's definition in the site `config`. `.Language.Lang` gives you the language code.
 +
 +.Lastmod
 +: the date the content was last modified. `.Lastmod` pulls from the `lastmod` field in a content's front matter.
 +
 + - If `lastmod` is not set, and `.GitInfo` feature is disabled, the front matter `date` field will be used.
 + - If `lastmod` is not set, and `.GitInfo` feature is enabled, `.GitInfo.AuthorDate` will be used instead.
 +
 +See also `.ExpiryDate`, `.Date`, `.PublishDate`, and [`.GitInfo`][gitinfo].
 +
 +.LinkTitle
 +: access when creating links to the content. If set, Hugo will use the `linktitle` from the front matter before `title`.
 +
 +.Next
 +: Points up to the next [regular page](/variables/site/#site-pages) (sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath)). Example: `{{with .Next}}{{.Permalink}}{{end}}`. Calling `.Next` from the first page returns `nil`.
 +
 +.NextInSection
 +: Points up to the next [regular page](/variables/site/#site-pages) below the same top level section (e.g. in `/blog`)). Pages are sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath). Example: `{{with .NextInSection}}{{.Permalink}}{{end}}`. Calling `.NextInSection` from the first page returns `nil`.
 +
 +.OutputFormats
 +: contains all formats, including the current format, for a given page. Can be combined the with [`.Get` function](/functions/get/) to grab a specific format. (See [Output Formats](/templates/output-formats/).)
 +
 +.Pages
 +: a collection of associated pages. This value will be `nil` within
 +  the context of regular content pages. See [`.Pages`](#pages).
 +
 +.Permalink
 +: the Permanent link for this page; see [Permalinks](/content-management/urls/)
 +
 +.Plain
 +: the Page content stripped of HTML tags and presented as a string.
 +
 +.PlainWords
 +: the slice of strings that results from splitting .Plain into words, as defined in Go's [strings.Fields](https://golang.org/pkg/strings/#Fields).
 +
 +.Prev
 +: Points down to the previous [regular page](/variables/site/#site-pages) (sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath)). Example: `{{if .Prev}}{{.Prev.Permalink}}{{end}}`.  Calling `.Prev` from the last page returns `nil`.
 +
 +.PrevInSection
 +: Points down to the previous [regular page](/variables/site/#site-pages) below the same top level section (e.g. `/blog`). Pages are sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath). Example: `{{if .PrevInSection}}{{.PrevInSection.Permalink}}{{end}}`.  Calling `.PrevInSection` from the last page returns `nil`.
 +
 +.PublishDate
 +: the date on which the content was or will be published; `.Publishdate` pulls from the `publishdate` field in a content's front matter. See also `.ExpiryDate`, `.Date`, and `.Lastmod`.
 +
 +.RSSLink (deprecated)
 +: link to the page's RSS feed. This is deprecated. You should instead do something like this: `{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}`.
 +
 +.RawContent
 +: raw markdown content without the front matter. Useful with [remarkjs.com](
 +https://remarkjs.com)
 +
 +.ReadingTime
 +: the estimated time, in minutes, it takes to read the content.
 +
 +.Resources
 +: resources such as images and CSS that are associated with this page
 +
 +.Ref
 +: returns the permalink for a given reference (e.g., `.Ref "sample.md"`).  `.Ref` does *not* handle in-page fragments correctly. See [Cross References](/content-management/cross-references/).
 +
 +.RelPermalink
 +: the relative permanent link for this page.
 +
 +.RelRef
 +: returns the relative permalink for a given reference (e.g., `RelRef
 +"sample.md"`). `.RelRef` does *not* handle in-page fragments correctly. See [Cross References](/content-management/cross-references/).
 +
 +.Site
 +: see [Site Variables](/variables/site/).
 +
 +.Sites
 +: returns all sites (languages). A typical use case would be to link back to the main language: `<a href="{{ .Sites.First.Home.RelPermalink }}">...</a>`.
 +
 +.Sites.First
 +: returns the site for the first language. If this is not a multilingual setup, it will return itself.
 +
 +.Summary
 +: a generated summary of the content for easily showing a snippet in a summary view. The breakpoint can be set manually by inserting <code>&lt;!&#x2d;&#x2d;more&#x2d;&#x2d;&gt;</code> at the appropriate place in the content page, or the summary can be written independent of the page text.  See [Content Summaries](/content-management/summaries/) for more details.
 +
 +.TableOfContents
 +: the rendered [table of contents](/content-management/toc/) for the page.
 +
 +.Title
 +: the title for this page.
 +
 +.Translations
 +: a list of translated versions of the current page. See [Multilingual Mode](/content-management/multilingual/) for more information.
 +
 +.TranslationKey
 +: the key used to map language translations of the current page. See [Multilingual Mode](/content-management/multilingual/) for more information.
 +
 +.Truncated
 +: a boolean, `true` if the `.Summary` is truncated. Useful for showing a "Read more..." link only when necessary.  See [Summaries](/content-management/summaries/) for more information.
 +
 +.Type
 +: the [content type](/content-management/types/) of the content (e.g., `posts`).
 +
 +.UniqueID (deprecated)
 +: the MD5-checksum of the content file's path. This variable is deprecated and will be removed, use `.File.UniqueID` instead.
 +
 +.Weight
 +: assigned weight (in the front matter) to this content, used in sorting.
 +
 +.WordCount
 +: the number of words in the content.
 +
 +## Section Variables and Methods
 +
 +Also see [Sections](/content-management/sections/).
 +
 +{{< readfile file="/content/en/readfiles/sectionvars.md" markdown="true" >}}
 +
 +## The `.Pages` Variable {#pages}
 +
 +`.Pages` is an alias to `.Data.Pages`. It is conventional to use the
 +aliased form `.Pages`.
 +
 +### `.Pages` compared to `.Site.Pages`
 +
 +{{< getcontent path="readfiles/pages-vs-site-pages.md" >}}
 +
 +## Page-level Params
 +
 +Any other value defined in the front matter in a content file, including taxonomies, will be made available as part of the `.Params` variable.
 +
 +```
 +---
 +title: My First Post
 +date: 2017-02-20T15:26:23-06:00
 +categories: [one]
 +tags: [two,three,four]
 +```
 +
 +With the above front matter, the `tags` and `categories` taxonomies are accessible via the following:
 +
 +* `.Params.tags`
 +* `.Params.categories`
 +
 +{{% note "Casing of Params" %}}
 +Page-level `.Params` are *only* accessible in lowercase.
 +{{% /note %}}
 +
 +The `.Params` variable is particularly useful for the introduction of user-defined front matter fields in content files. For example, a Hugo website on book reviews could have the following front matter in `/content/review/book01.md`:
 +
 +```
 +---
 +...
 +affiliatelink: "http://www.my-book-link.here"
 +recommendedby: "My Mother"
 +...
 +---
 +```
 +
 +These fields would then be accessible to the `/themes/yourtheme/layouts/review/single.html` template through `.Params.affiliatelink` and `.Params.recommendedby`, respectively.
 +
 +Two common situations where this type of front matter field could be introduced is as a value of a certain attribute like `href=""` or by itself to be displayed as text to the website's visitors.
 +
 +{{< code file="/themes/yourtheme/layouts/review/single.html" >}}
 +<h3><a href={{ printf "%s" $.Params.affiliatelink }}>Buy this book</a></h3>
 +<p>It was recommended by {{ .Params.recommendedby }}.</p>
 +{{< /code >}}
 +
 +This template would render as follows, assuming you've set [`uglyURLs`](/content-management/urls/) to `false` in your [site `config`](/getting-started/configuration/):
 +
 +{{< output file="yourbaseurl/review/book01/index.html" >}}
 +<h3><a href="http://www.my-book-link.here">Buy this book</a></h3>
 +<p>It was recommended by my Mother.</p>
 +{{< /output >}}
 +
 +{{% note %}}
 +See [Archetypes](/content-management/archetypes/) for consistency of `Params` across pieces of content.
 +{{% /note %}}
 +
 +### The `.Param` Method
 +
 +In Hugo, you can declare params in individual pages and globally for your entire website. A common use case is to have a general value for the site param and a more specific value for some of the pages (i.e., a header image):
 +
 +```
 +{{ $.Param "header_image" }}
 +```
 +
 +The `.Param` method provides a way to resolve a single value according to it's definition in a page parameter (i.e. in the content's front matter) or a site parameter (i.e., in your `config`).
 +
 +### Access Nested Fields in Front Matter
 +
 +When front matter contains nested fields like the following:
 +
 +```
 +---
 +author:
 +  given_name: John
 +  family_name: Feminella
 +  display_name: John Feminella
 +---
 +```
 +`.Param` can access these fields by concatenating the field names together with a dot:
 +
 +```
 +{{ $.Param "author.display_name" }}
 +```
 +
 +If your front matter contains a top-level key that is ambiguous with a nested key, as in the following case:
 +
 +```
 +---
 +favorites.flavor: vanilla
 +favorites:
 +  flavor: chocolate
 +---
 +```
 +
 +The top-level key will be preferred. Therefore, the following method, when applied to the previous example, will print `vanilla` and not `chocolate`:
 +
 +```
 +{{ $.Param "favorites.flavor" }}
 +=> vanilla
 +```
 +
 +[gitinfo]: /variables/git/
 +[File Variables]: /variables/files/
++[bundle]: {{< relref "content-management/page-bundles" >}}
index 8538e2104474aae2760aad732fc639b2b01d540f,0000000000000000000000000000000000000000..a2429a3350a43432526c3115e7f41ecddb415577
mode 100644,000000..100644
--- /dev/null
@@@ -1,24 -1,0 +1,24 @@@
-                               <a href="{{.Site.Params.ghrepo}}blob/master/content/{{.Lang }}/{{.Path}}">
 +<table class="collapse ba br2 b--black-10 pv2 ph3">
 +      <thead>
 +              <tr>
 +                      <th class="pv2 ph3 tl f6 fw6 ttu">LastMod</th>
 +                      <th class="pv2 ph3 tl f6 fw6 ttu">Link</th>
 +                      <th class="pv2 ph3 tl f6 fw6 ttu">GitHub</th>
 +              </tr>
 +      </thead>
 +      <tbody>
 +              {{ range  . }}
 +              <tr class="striped--light-gray">
 +                      <td class="pv2 ph3">{{ .Lastmod.Format "2006-01-02" }}</td>
 +                      <td class="pv2 ph3">
 +                              <a href="{{ .Permalink }}">{{ .Title }}</a>
 +                      </td>
 +                      <td class="pv2 ph3">
++                              <a href="{{.Site.Params.ghrepo}}blob/master/content/{{.Lang }}/{{.File.Path}}">
 +                                      {{ with .GitInfo }}{{ .Subject }}{{ else }}Source{{ end }}
 +                              </a>
 +                      </td>
 +              </tr>
 +              {{ end }}
 +      </tbody>
 +</table>
index ada1d9afc5f1c3320823d7906ec829dd3e95bb84,0000000000000000000000000000000000000000..a44e1f38df5f030ce78f1f524bd7c0d216ae4b8e
mode 100644,000000..100644
--- /dev/null
@@@ -1,35 -1,0 +1,35 @@@
- HUGO_VERSION = "0.90.1"
 +[build]
 +publish = "public"
 +command = "hugo --gc --minify"
 +
 +[context.production.environment]
- HUGO_VERSION = "0.90.1"
++HUGO_VERSION = "0.91.2"
 +HUGO_ENV = "production"
 +HUGO_ENABLEGITINFO = "true"
 +
 +[context.split1]
 +command = "hugo --gc --minify --enableGitInfo"
 +
 +[context.split1.environment]
- HUGO_VERSION = "0.90.1"
++HUGO_VERSION = "0.91.2"
 +HUGO_ENV = "production"
 +
 +[context.deploy-preview]
 +command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
 +
 +[context.deploy-preview.environment]
- HUGO_VERSION = "0.90.1"
++HUGO_VERSION = "0.91.2"
 +
 +[context.branch-deploy]
 +command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
 +
 +[context.branch-deploy.environment]
++HUGO_VERSION = "0.91.2"
 +
 +[context.next.environment]
 +HUGO_ENABLEGITINFO = "true"
 +
 +[[redirects]]
 +from = "/npmjs/*"
 +to = "/npmjs/"
 +status = 200