Sort grouped and sorted content based on custom slice

Even this hack-ish solution does not avail:

    <h2>{{ .Key }}</h2>
    {{ if eq .Key 1 }}
        <h2>Faculty</h2>
    {{ end }}

there is only a single

<h2>1</h2>

Solved
This is the hack solution:

    {{ if eq .Key "1" }}
        <h2>Faculty</h2>
    {{ end }

and it works for now.