2025-10-08 15:02:13 -07:00
|
|
|
<!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}}
|
2025-10-08 15:24:30 -07:00
|
|
|
<li><a href="{{.Name}}">{{.Name}}</a></li>
|
2025-10-08 15:02:13 -07:00
|
|
|
{{- end}}
|
|
|
|
|
</ul>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|