Hey,
I’m working with a range, for example:
{{ range first 1 .Pages }}
<p><a href="{{ .RelPermalink }}">Continue reading...</a></p>
<h1>{{ .Section.Title }}</h1>
<h2>{{ .Title }}</h2>
<p>{{ .Summary }}</p>
{{ end }}
This code is in category.html in my theme. I’d like the H1 element to display the category name, but I can’t seem to figure out how to do that. Is there a variable for getting single category names from category list pages?
Best Regards,
Jonathan Clarke