Hi there,
In my site I have the following taxonomie setup:
[taxonomies]
tag = "tags"
category = "categories"
series = "series"
+++
date = "2016-09-08T13:14:47+02:00"
title = "Customer xyz Server Provisioning"
categories = [ "Portfolio"]
series = [ "Server Provisioning" ]
+++
In my html I want to output a list of series:
{{ range $name, $taxonomy := .Site.Taxonomies.series }}
<li><a href="#" data-filter=".{{ $name }}"><h3>{{ $name }}</h3></a></li>
{{ end }}
For the second name I want the original string (Server Provisioning). Now it shows the parsed version (server-provisioning). What would be the best way to accomplish this?
Thanks!