list.html (452B)
1 {{template "_header" .}} 2 <h1>Files</h1> 3 4 {{if .Data.Tagged}} 5 <h2>Tagged Files</h2> 6 <div class="gallery"> 7 {{range .Data.Tagged}} 8 {{template "_gallery" .}} 9 {{else}} 10 <p>No tagged files yet.</p> 11 {{end}} 12 </div> 13 {{end}} 14 15 {{if .Data.Untagged}} 16 <h2>Untagged Files</h2> 17 <div class="gallery"> 18 {{range .Data.Untagged}} 19 {{template "_gallery" .}} 20 {{else}} 21 <li>No untagged files.</li> 22 {{end}} 23 </div> 24 {{end}} 25 26 {{template "_pagination" .}} 27 28 {{template "_footer"}}