selvaGo/templates/index.html
2025-04-04 15:55:58 -06:00

22 lines
No EOL
439 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plant Index</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>Our Plants</h1>
<ul>
{{ range . }}
<li>
<a href="/nombres/html/{{ .NombreID }}">{{ .Nombre }}</a>
</li>
{{ end }}
</ul>
</body>
</html>