sliproad/assets/web/listing.html
2019-02-24 10:10:08 -08:00

40 lines
1.2 KiB
HTML

{{ $path := .Path }}
{{ $prev := .Previous }}
{{ $prefix := .Prefix }}
{{ $singleprefix := .SinglePrefix }}
<html>
<head>
<title>{{ $path }} | PiNas</title>
<link rel="stylesheet" href="/assets/styles.css">
</head>
<body>
<header>
<a href="/" class="back-button">
<img src="/assets/svgs/back.svg" alt="">
</a>
<h1 style="display: inline-block">PiNas</h1>
</header>
<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}}">
<img src="/assets/svgs/directory.svg" alt="">
{{$file.Name}}</a>
</p>
{{ end }}
{{ if not $file.IsDir }}
<p class="file"><a href="/{{$singleprefix}}/{{$path}}/{{$file.Name}}">
<img src="/assets/svgs/file.svg" alt="">
{{$file.Name}}</a>
</p>
{{end}}
{{end}}
</div>
</main>
</body>
</html>