You should know that the variable passed in to the template is available as $.
{{range .Pages}}
<li><a href="https://stackoverflow.com/questions/16734503/{{$.Name}}/{{.}}">{{.}}</a></li>
{{end}}
(See the text/template documentation under “Variables”.)