filebrowser/assets/templates/single.tmpl

19 lines
296 B
Cheetah
Raw Normal View History

2016-06-11 13:32:50 +00:00
{{ define "content" }}
<main class="container">
{{ if eq .Type "image" }}
2016-06-14 19:33:59 +00:00
<img src="{{ .URL }}?raw=true">
2016-06-11 13:32:50 +00:00
{{ else if eq .Type "audio" }}
2016-06-14 19:33:59 +00:00
<audio src="{{ .URL }}?raw=true">
2016-06-11 13:32:50 +00:00
</audio>
{{ else if eq .Type "video" }}
{{ else}}
<pre>{{ .Content }}</pre>
{{ end }}
</main>
{{ end }}