aemet/cmd/templates/redirect.html

28 lines
532 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>AEMET Client</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="style.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div id="main">
<b>
<ul>
{{ range $key, $value := .Localidades }}
<li>
<p><a href="{{ $key }}" class="optionCap">{{ $key }}</a></p>
</li>
{{ end }}
</ul>
</b>
</div>
</div>
</body>
</html>