mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-09-10 04:04:40 -04:00
Fix spelling mistakes
This commit is contained in:
parent
7bd427141d
commit
88f559e816
@ -55,7 +55,7 @@ Returns a collection of pages related to a given one restricted to a list of ind
|
|||||||
#### .RelatedTo KEYVALS [KEYVALS2 ...]
|
#### .RelatedTo KEYVALS [KEYVALS2 ...]
|
||||||
Returns a collection of pages related together by a set of indices and their match.
|
Returns a collection of pages related together by a set of indices and their match.
|
||||||
|
|
||||||
In order to build those set and pass them as argument, one must use the `keyVals` function where the first agrument would be the `indice` and the consective ones its potential `matches`.
|
In order to build those set and pass them as argument, one must use the `keyVals` function where the first argument would be the `indice` and the consective ones its potential `matches`.
|
||||||
|
|
||||||
```
|
```
|
||||||
{{ $related := .Site.RegularPages.RelatedTo ( keyVals "tags" "hugo" "rocks") ( keyVals "date" .Date ) }}
|
{{ $related := .Site.RegularPages.RelatedTo ( keyVals "tags" "hugo" "rocks") ( keyVals "date" .Date ) }}
|
||||||
|
@ -24,7 +24,7 @@ deprecated: false
|
|||||||
|
|
||||||
A template file is any file living below the `layouts` directories of either the project or any of its theme components incudling partials and shortcodes.
|
A template file is any file living below the `layouts` directories of either the project or any of its theme components incudling partials and shortcodes.
|
||||||
|
|
||||||
The function is particulary handy with dynamic path. The following example ensures the build will not break on a `.Type` missing its dedicated `header` partial.
|
The function is particularly handy with dynamic path. The following example ensures the build will not break on a `.Type` missing its dedicated `header` partial.
|
||||||
|
|
||||||
```go-html-template
|
```go-html-template
|
||||||
{{ $partialPath := printf "headers/%s.html" .Type }}
|
{{ $partialPath := printf "headers/%s.html" .Type }}
|
||||||
|
@ -62,7 +62,7 @@ If you are on Linux and using [Linuxbrew][linuxbrew], you can install Hugo with
|
|||||||
brew install hugo
|
brew install hugo
|
||||||
{{< /code >}}
|
{{< /code >}}
|
||||||
|
|
||||||
Installation guides for Linuxbrew are avaliable on their [website][linuxbrew].
|
Installation guides for Linuxbrew are available on their [website][linuxbrew].
|
||||||
|
|
||||||
### Chocolatey (Windows)
|
### Chocolatey (Windows)
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ Hugo also depends on a lot of other great projects. A big thanks to all of our d
|
|||||||
- New template functions:
|
- New template functions:
|
||||||
- `getenv`
|
- `getenv`
|
||||||
- The string functions `substr` and `slicestr`
|
- The string functions `substr` and `slicestr`
|
||||||
*`seq`, a sequence generator very similar to its Gnu countepart
|
*`seq`, a sequence generator very similar to its Gnu counterpart
|
||||||
- `absURL` and `relURL`, both of which takes the `BaseURL` setting into account
|
- `absURL` and `relURL`, both of which takes the `BaseURL` setting into account
|
||||||
|
|
||||||
## Improvements
|
## Improvements
|
||||||
|
@ -6,7 +6,7 @@ description: "Configurable file caches, inline shortcodes, and more ..."
|
|||||||
categories: ["Releases"]
|
categories: ["Releases"]
|
||||||
---
|
---
|
||||||
|
|
||||||
The two big new items in this release is [Inline Shortcodes](https://gohugo.io//templates/shortcode-templates/#inline-shortcodes) and [Consolidated File Caches](https://gohugo.io/getting-started/configuration/#configure-file-caches). In Hugo we really care about build speed, and caching is important. With this release, you get much better control over your cache configuration, which is especially useful when building on a Continous Integration server (Netlify, CircleCI or similar). Inline Shortcodes was implemented to help the Bootstrap project [move their documentation site](https://github.com/twbs/bootstrap/issues/24475#issuecomment-441238128) to Hugo. Note that this feature is disabled by default. To enable, set `enableInlineShortcodes = true` in your site config. Worth mentioning is also the new `param` shortcode, which looks up the param in page front matter with the site's parameter as a fall back.
|
The two big new items in this release is [Inline Shortcodes](https://gohugo.io//templates/shortcode-templates/#inline-shortcodes) and [Consolidated File Caches](https://gohugo.io/getting-started/configuration/#configure-file-caches). In Hugo we really care about build speed, and caching is important. With this release, you get much better control over your cache configuration, which is especially useful when building on a Continuous Integration server (Netlify, CircleCI or similar). Inline Shortcodes was implemented to help the Bootstrap project [move their documentation site](https://github.com/twbs/bootstrap/issues/24475#issuecomment-441238128) to Hugo. Note that this feature is disabled by default. To enable, set `enableInlineShortcodes = true` in your site config. Worth mentioning is also the new `param` shortcode, which looks up the param in page front matter with the site's parameter as a fall back.
|
||||||
|
|
||||||
This release represents **33 contributions by 7 contributors** to the main Hugo code base.
|
This release represents **33 contributions by 7 contributors** to the main Hugo code base.
|
||||||
[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@moorereason](https://github.com/moorereason), [@emirb](https://github.com/emirb), and [@allizad](https://github.com/allizad) for their ongoing contributions.
|
[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@moorereason](https://github.com/moorereason), [@emirb](https://github.com/emirb), and [@allizad](https://github.com/allizad) for their ongoing contributions.
|
||||||
@ -72,8 +72,3 @@ Hugo now has:
|
|||||||
* Fix when only shortcode and then summary [94ab125b](https://github.com/gohugoio/hugo/commit/94ab125b27a29a65e5ea45efd99dd247084b4c37) [@bep](https://github.com/bep) [#5464](https://github.com/gohugoio/hugo/issues/5464)
|
* Fix when only shortcode and then summary [94ab125b](https://github.com/gohugoio/hugo/commit/94ab125b27a29a65e5ea45efd99dd247084b4c37) [@bep](https://github.com/bep) [#5464](https://github.com/gohugoio/hugo/issues/5464)
|
||||||
* Fix ignored --config flag with 'new' command [e82b2dc8](https://github.com/gohugoio/hugo/commit/e82b2dc8c1628f2da33e5fb0bae1b03e0594ad2c) [@krisbudhram](https://github.com/krisbudhram)
|
* Fix ignored --config flag with 'new' command [e82b2dc8](https://github.com/gohugoio/hugo/commit/e82b2dc8c1628f2da33e5fb0bae1b03e0594ad2c) [@krisbudhram](https://github.com/krisbudhram)
|
||||||
* Fix Permalink for resource, baseURL with path and canonifyURLs set [5df2b79d](https://github.com/gohugoio/hugo/commit/5df2b79dd2734e9a00ed1692328f58c385676468) [@bep](https://github.com/bep) [#5226](https://github.com/gohugoio/hugo/issues/5226)
|
* Fix Permalink for resource, baseURL with path and canonifyURLs set [5df2b79d](https://github.com/gohugoio/hugo/commit/5df2b79dd2734e9a00ed1692328f58c385676468) [@bep](https://github.com/bep) [#5226](https://github.com/gohugoio/hugo/issues/5226)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ Swiss [Arolla campsite](http://www.camping-arolla.com/) runs the highest campsit
|
|||||||
|
|
||||||
But they just launch a brand new offer (luxury tents with bed and fire oven), and we couldn't wait for the proper new website for having this promoted: we needed the website up and running within 24h!
|
But they just launch a brand new offer (luxury tents with bed and fire oven), and we couldn't wait for the proper new website for having this promoted: we needed the website up and running within 24h!
|
||||||
|
|
||||||
So we decided to quickly launch a dedicated [independant web site](https://www.cocoon-arolla.com) using all the powefull tools included with [gohugo.io](http://gohugo.io) and some things we already knew & used:
|
So we decided to quickly launch a dedicated [independent web site](https://www.cocoon-arolla.com) using all the powefull tools included with [gohugo.io](http://gohugo.io) and some things we already knew & used:
|
||||||
|
|
||||||
- Choose a spectacular landing theme in the rich [Hugo Themes](http://themes.gohugo.io/) collection : [Airspace Theme](https://themes.gohugo.io/airspace-hugo/) by Themefisher.
|
- Choose a spectacular landing theme in the rich [Hugo Themes](http://themes.gohugo.io/) collection : [Airspace Theme](https://themes.gohugo.io/airspace-hugo/) by Themefisher.
|
||||||
- Replace the main images.
|
- Replace the main images.
|
||||||
@ -27,4 +27,4 @@ So we decided to quickly launch a dedicated [independant web site](https://www.c
|
|||||||
|
|
||||||
The first version was up in 4 hours, and the polished 2 languages version was published on Netlify the next day.
|
The first version was up in 4 hours, and the polished 2 languages version was published on Netlify the next day.
|
||||||
|
|
||||||
This would have been impossible to do it in such a short time without all the powerfull Hugo tools and Netlify simplicity.
|
This would have been impossible to do it in such a short time without all the powerful Hugo tools and Netlify simplicity.
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
PHARMASEAL began in 2016 with the purpose of disrupting the Clinical Trials Management market through continuos validation and intergration
|
PHARMASEAL began in 2016 with the purpose of disrupting the Clinical Trials Management market through continuous validation and integration
|
||||||
|
|
||||||
We've been using **Hugo + Webpack + Netlify** to provide a scalable, modular design for the website, complete with Forestry building blocks to quickly be able to generate engagement pages.
|
We've been using **Hugo + Webpack + Netlify** to provide a scalable, modular design for the website, complete with Forestry building blocks to quickly be able to generate engagement pages.
|
||||||
|
|
||||||
|
@ -235,7 +235,7 @@ key.
|
|||||||
|
|
||||||
#### Example 5: Conditional on empty _map_, _array_, or _slice_.
|
#### Example 5: Conditional on empty _map_, _array_, or _slice_.
|
||||||
|
|
||||||
If the _map_, _array_, or _slice_ passed into the range is zero-length then the else statment is evaluated.
|
If the _map_, _array_, or _slice_ passed into the range is zero-length then the else statement is evaluated.
|
||||||
|
|
||||||
```go-html-template
|
```go-html-template
|
||||||
{{ range $array }}
|
{{ range $array }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user