{{define "views/Pokemons.gohtml"}} {{template "components/Head.gohtml"}} {{template "components/Navbar.gohtml" .NavigationLinks}}
{{range .Data}}
{{.Name}}
Name: {{.Name}}

Weight: {{.Weight}}
Height: {{.Height}}
Types: {{.Types}}
Moves:

{{.Moves}}

{{end}}
{{template "components/Footer.gohtml"}} {{end}}