mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Fixing the taxonomy example. Fixed #318.
This commit is contained in:
parent
d3646aaac0
commit
6f9f93f34b
1 changed files with 2 additions and 2 deletions
|
@ -90,8 +90,8 @@ The following example displays all tag keys:
|
|||
### Example
|
||||
|
||||
<ul id="all-tags">
|
||||
{{ range .Site.Taxonomies.tags }}
|
||||
<li><a href="/tags/{{ .Name | urlize }}">{{ .Name }}</a></li>
|
||||
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
|
||||
<li><a href="/tags/{{ $name | urlize }}">{{ $name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
|
||||
|
|
Loading…
Reference in a new issue