sliproad/assets/web/listing.html

28 lines
810 B
HTML
Raw Normal View History

{{ $path := .Path }}
{{ $prev := .Previous }}
{{ $prefix := .Prefix }}
{{ $singleprefix := .SinglePrefix }}
<html>
<head>
<title>{{ $path }} | PiNas</title>
<link rel="stylesheet" href="/assets/styles.css">
</head>
<body>
<main>
<div>
<h1>{{$prefix}}/{{$path}}</h1>
</div>
<div class="content">
<p class="directory"><a href="/{{$prefix}}/{{$prev}}">..</a></p>
{{range $file := .Files}}
{{ if $file.IsDir }}
<p class="directory"><a href="/{{$prefix}}/{{$path}}/{{$file.Name}}">{{$file.Name}}/</a></p>
{{ end }}
{{ if not $file.IsDir }}
<p class="file"><a href="/{{$singleprefix}}/{{$path}}/{{$file.Name}}">{{$file.Name}}</a></p>
{{end}}
{{end}}
</div>
</main>
</body>
</html>