sliproad/assets/web/listing.html

28 lines
741 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>{{$path}}</h1>
</div>
<div class="content">
<a href="/{{$prefix}}{{$prev}}">..</a> <br>
{{range $file := .Files}}
{{ if $file.IsDir }}
<a href="/{{$prefix}}/{{$path}}/{{$file.Name}}">{{$file.Name}}</a> <br>
{{ end }}
{{ if not $file.IsDir }}
<a href="/{{$singleprefix}}/{{$path}}/{{$file.Name}}">{{$file.Name}}</a> <br>
{{end}}
{{end}}
</div>
</main>
</body>
</html>