aemet/cmd/templates/index.html

33 lines
539 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>
<p>Localidad: {{ .Base.Nombre }}</p>
{{ range .Base.Prediccion.Dia}}
<hr>
<p>Dia: {{ .Fecha }}</p>
<p>
Índice ultravioleta:
{{ if eq .UV ""}}
No disponible!
{{ else }}
{{ .UV }}
{{ end }}
</p>
<!-- <p>Índice ultravioleta: {{ .UV }}</p> -->
{{ end }}
</body>
</html>