I would like to sort my posts by title. I want it to be case insensitive. I know about .Data.Pages.ByTitle
, but that doesn’t do the trick for the case insensitivity.
How would I change the following code to get case insensitive sorting?
{{ range .Data.Pages.ByTitle }}
<div class="post">
<a href="{{ .Permalink }}">{{ .Title }}</a>
</div>
{{ end }}