Files
s/helios/index.html.tmpl
Ian Gulliver c7b3341226 Halcons
2025-10-08 22:29:22 -07:00

29 lines
731 B
Cheetah

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Index of {{.Dir}}</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
max-width: 800px;
margin: 50px auto;
padding: 0 20px;
}
h1 { color: #333; }
ul { list-style: none; padding: 0; }
li { padding: 8px 0; border-bottom: 1px solid #eee; }
a { text-decoration: none; color: #0066cc; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h1>Index of {{.Dir}}</h1>
<ul>
{{- range .Files}}
<li><a href="{{.Name}}">{{.Name}}</a></li>
{{- end}}
</ul>
</body>
</html>