I am trying to use .Get to access my Site parameters:
{{if in .Page.Permalink “xap101” }}{{index .Page.Site.Params.xap101 “{{.Get 0}}” }}
{{else if in .Page.Permalink “xap102” }}{{index .Page.Site.Params.xap102 “{{.Get 0}}”}}{{end}}
This does not work.
When I use a string constant it works:
{{else if in .Page.Permalink “xap102” }}{{index .Page.Site.Params.xap102 “***java-version”***}}{{end}}
How can I make this shortcode work by passing the argument to it and using Get?