I am trying to add the statement to append .html to the categories if uglyurl is set to true. However It does not allow me and throws me the following error.
parse failed: template: partials/sidebar.html:35: unexpected "<" in command
{{ if (isset .Params "uglyurls") }}
{{ <a href="{{- "categories/" | relLangURL -}} {{- $name | urlize | lower -}}.html"> {{ .Page.Title }} ({{ $items.Count }})</a> }}
{{ else }}
{{ <a href="{{- "categories/" | relLangURL -}} {{- $name | urlize | lower -}}"> {{ .Page.Title }} ({{ $items.Count }})</a> }}
{{ end }}
Can someone point me in the right direction to get this fixed? Thank you in advance.