mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
ba45da9d03
32356e4e Fix typo in header of shortcode-templates.md c8f1a2d2 Correct code example for index template function bfa6a55d Escape code fencing ff8b2f99 Fix typos in deployment with wercker tutorial 557c36e8 theme: Merge commit '7fbb4bed25001182bfeb91f79db0f0c1936582ee' 7fbb4bed Squashed 'themes/gohugoioTheme/' changes from 7dd8a302..ca53082d ce31cee0 Add "See Also" config 158cee1b Make the tags into keywords 61600be6 Add a note to the related section 49edb5a2 Relase 0.27.1 c9bbc001 releaser: Add release notes to /docs for release of 0.27.1 213c6c3b Add bugs poster 8b4590cd Add KeyCDN integration tutorial 2b277859 Add tutorial videos to several docs pages 950fef1f Update roadmap to link to the correct milestones page 496f5bf6 Rename relnotes d6f9378d Bump Netlify versions to 0.27 087fde7f Update 0.27 release notes 603f94ae docs: Document Related Content 3790f6a3 releaser: Bump versions for release of 0.27 0948868c releaser: Add release notes to /docs for release of 0.27 git-subtree-dir: docs git-subtree-split: 32356e4eabe357ae914f4d1d59e8ae31ce936723
84 lines
2.8 KiB
Markdown
84 lines
2.8 KiB
Markdown
---
|
|
title: index
|
|
linktitle: index
|
|
description: Looks up the index(es) or key(s) of the data structure passed into it.
|
|
godocref: https://golang.org/pkg/text/template/#hdr-Functions
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: "functions"
|
|
keywords: []
|
|
signature: ["index COLLECTION INDEX", "index COLLECTION KEY"]
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: []
|
|
deprecated: false
|
|
aliases: [/functions/index/]
|
|
needsexample: true
|
|
---
|
|
|
|
From the Godocs:
|
|
|
|
> Returns the result of indexing its first argument by the following arguments. Thus "index x 1 2 3" is, in Go syntax, x[1][2][3]. Each indexed item must be a map, slice, or array.
|
|
|
|
In Go templates, you can't access array, slice, or map elements directly the same way you would in Go. For example, `$.Site.Data.authors[.Params.authorkey]` isn't supported syntax.
|
|
|
|
Instead, you have to use `index`, a function that handles the lookup for you.
|
|
|
|
## Example: Load Data from a Path Based on Front Matter Params
|
|
|
|
Assume you want to add a `location = ""` field to your front matter for every article written in `content/vacations/`. You want to use this field to populate information about the location at the bottom of the article in your `single.html` template. You also have a directory in `data/locations/` that looks like the following:
|
|
|
|
```
|
|
.
|
|
└── data
|
|
└── locations
|
|
├── abilene.toml
|
|
├── chicago.toml
|
|
├── oslo.toml
|
|
└── provo.toml
|
|
```
|
|
|
|
Here is an example of the data inside `data/locations/oslo.toml`:
|
|
|
|
```
|
|
website = "https://www.oslo.kommune.no"
|
|
pop_city = 658390
|
|
pop_metro = 1717900
|
|
```
|
|
|
|
The example we will use will be an article on Oslo, which front matter should set to exactly the same name as the corresponding file name in `data/locations/`:
|
|
|
|
```
|
|
title = "My Norwegian Vacation"
|
|
location = "oslo"
|
|
```
|
|
|
|
The content of `oslo.toml` can be accessed from your template using the following node path: `.Site.Data.locations.oslo`. However, the specific file you need is going to change according to the front matter.
|
|
|
|
This is where the `index` function is needed. `index` takes 2 parameters in this use case:
|
|
|
|
1. The node path
|
|
2. A string corresponding to the desired data; e.g.—
|
|
|
|
```
|
|
{{ index .Site.Data.locations “oslo” }}
|
|
```
|
|
|
|
The variable for `.Params.location` is a string and can therefore replace `oslo` in the example above:
|
|
|
|
```
|
|
{{ index .Site.Data.locations .Params.location }}
|
|
=> map[website:https://www.oslo.kommune.no pop_city:658390 pop_metro:1717900]
|
|
```
|
|
|
|
Now the call will return the specific file according to the location specified in the content's front matter, but you will likely want to write specific properties to the template. You can do this by continuing down the node path via dot notation (`.`):
|
|
|
|
```
|
|
{{ (index .Site.Data.locations .Params.location).pop_city }}
|
|
=> 658390
|
|
```
|
|
|