list.html (790B)
1 {{template "_header" .}} 2 3 {{if .Breadcrumbs}} 4 <div class="breadcrumb"> 5 {{range $index, $crumb := .Breadcrumbs}} 6 {{if ne $index 0}} <span class="breadcrumb-separator">▶</span> {{end}} 7 {{if $crumb.URL}} 8 <a href="{{$crumb.URL}}" {{if hasPrefix $crumb.URL "/property/filetype/"}}style="text-transform:lowercase"{{end}}>{{$crumb.Name}}</a> 9 {{else}} 10 <a href="/tags#tag-{{$crumb.Name}}">{{$crumb.Name}}</a> 11 {{end}} 12 {{if gt $crumb.Count 0}} ({{$crumb.Count}}){{end}} 13 {{end}} 14 </div> 15 {{else}} 16 <h1>File Browser</h1> 17 {{end}} 18 19 {{if .Data.Tagged}} 20 <div class="gallery"> 21 {{range .Data.Tagged}} 22 {{template "_gallery" dict "File" . "Page" $}} 23 {{else}} 24 <p>No tagged files yet.</p> 25 {{end}} 26 </div> 27 {{end}} 28 29 30 {{template "_pagination" .}} 31 32 {{template "_footer"}}