diff --git a/content/content-management/organization.md b/content/content-management/organization.md index ae3f0ff6d..26e9a5b8d 100644 --- a/content/content-management/organization.md +++ b/content/content-management/organization.md @@ -198,9 +198,11 @@ layout: mylayout ``` {{% /code %}} -### `path` -`path` can be provided in the front matter. This will replace the actual path to the file on disk. Destination will create the destination with the same path, including the section. + + ### `url` diff --git a/content/content-management/urls.md b/content/content-management/urls.md index 074c81a41..093efa52e 100644 --- a/content/content-management/urls.md +++ b/content/content-management/urls.md @@ -267,7 +267,7 @@ hugo config | FINDSTR /I canon In addition to specifying permalink values in your site configuration for different content sections, Hugo provides even more granular control for individual pieces of content. -Both `slug` and `url` can be defined in individual front matter. For more information on content destinations at build time, seee [Content Organization][contentorg]. +Both `slug` and `url` can be defined in individual front matter. For more information on content destinations at build time, see [Content Organization][contentorg]. ## Relative URLs diff --git a/content/templates/introduction.md b/content/templates/introduction.md index d832ec792..74e20785b 100644 --- a/content/templates/introduction.md +++ b/content/templates/introduction.md @@ -305,7 +305,7 @@ Notice how once we have entered the loop (i.e. `range`), the value of `{{ . }}` `$` has special significance in your templates. `$` is set to the starting value of `.` ("the dot") by default. This is a [documented feature of Go text/template][dotdoc]. This means you have access to the global context from anywhere. Here is an equivalent example of the preceding code block but now using `$` to grab `.Site.Title` from the global context: {{% code file="range-through-tags-w-global.html" %}} -```html +```hbs