megauploader/res/templates/index.html.tmpl

21 lines
620 B
Cheetah

{{define "body"}}
<h1>MegaUploader</h1>
Carica un file
<ul>
{{range .Shares}}
<li><span class="share-link">
<a href="{{$.Prefix}}/upload/{{.Name}}">{{.Name}}</a>
</span>
<span class="share-description">{{.Description}}</span>
{{ if ne .SizeLimit.Bytes 0 }}
<span class="share-maxsize">
(Max {{.SizeLimit.HR}})</span>
{{else}}
<span class="share-maxsize"></span>
{{end}}
</li>
{{end}}
</ul>
{{end}}