about summary refs log tree commit diff homepage
path: root/templates/directory.html
blob: 6fc35fa119a06a2aeb7211424268bf99e9ce3bc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{{template "base-head.html" -}}
<link rel=stylesheet href=/static/directory.css>
<title>{{.Title}}</title>
<body>
  <main>
    <a href=../><p>../</p></a>{{range .Entries}}
    <a href="./{{.}}"><p>{{.}}</p></a>{{end}}
  </main>
</body>
</html>