mirror of
https://github.com/gohugoio/hugo.git
synced 2026-08-24 15:28:54 +00:00
77b976dd92
686c7b6ebci(Netlify): specify `HUGO_VERSION` environment variable onceda99a356ffix: change heading levele57da3f00Update taxonomy methods746172490Update description of rendered breadcrumb navigation6bc52fd40Clarify termdab07dcb0Fix typoe50fa452aFix typo6c1ea83c2Update template overview pagea5dc97845Clarify the append functiona135e52a0Update GitHub hosting instructionsa51bf9f4fUpdate sections pageed35fc6c4Update archetypes and glossary1a4522b3eFormat examplesa70f20094Use "hugo new content" to create content673846ff9Remove commentb7febf0c5Fix link6f6fe2133Miscellaneous edits99227dd18Remove lookup order table from output formats pagebc8870657tools/editors: Add Prettier Plugin for Go Templates157b169ebUpdate docs.yaml1c8f514e0Update cond functione5f1f8113Add assumptions to taxonomy and term template lookup order examples475b406e2Update postprocess2d6cb8dfcglossary: Update content type03b514bacAdd descriptions to template lookup order example sections06678f919glossary: Fix broken link4cd505612Simplify news listingfadb980dbUpdate glossary of terms491bacd78Change order of example sections for template lookup order04b8f39ecCreate glossary of terms12e896bc0Remove reference to asciidoctor-rouge extension055f7bb37Insert missing words8cd6ac387Miscellaneous edits2cbe17f41Update configuration.md529615373Update data-templates.md853154e65Update theme45f08627aresources.getRemote: Fix definition list29a51dac1Update docshelper3bdfe88c6Remove link to gitter from site footercacd0e461Use "map" instead of "dictionary"704dd5da6Document the transform.Remarshal template functione8d744951Populate news section via GitHub releases API3ff1118c7Replace docs.json with docs.yaml7726bbcacUse docs.json to generate default config throughout the site57dca93dfUse docs.json to generate default config for related content74d5082c7Add some .RenderShortcodes docscf5ab5062netlify: Hugo 0.117.0420f7aa69Add all config to docshelper.json git-subtree-dir: docs git-subtree-split:686c7b6eb1
1.9 KiB
1.9 KiB
title, description, categories, menu, keywords, signature, relatedfuncs
| title | description | categories | menu | keywords | signature | relatedfuncs | |||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| dict | Creates a map from a list of key and value pairs. |
|
|
|
|
dict is especially useful for passing more than one value to a partial template.
Note that the key can be either a string or a string slice. The latter is useful to create a deeply nested structure, e.g.:
{{ $m := dict (slice "a" "b" "c") "value" }}
Example: using dict to pass multiple values to a partial
The partial below creates an SVG and expects fill, height and width from the caller:
Partial definition
{{< code file="layouts/partials/svgs/external-links.svg" >}} {{< /code >}}
Partial call
The fill, height and width values can be stored in one object with dict and passed to the partial:
{{< code file="layouts/_default/list.html" >}} {{ partial "svgs/external-links.svg" (dict "fill" "#01589B" "width" 10 "height" 20 ) }} {{< /code >}}