taggart

Simple golang tagging filesystem webapp
Log | Files | Refs

orphans.html (187B)


      1 {{template "_header" .}}
      2 
      3 <h1>Orphaned Files</h1>
      4 
      5 {{if .Data}}
      6 <ul>
      7   {{range .Data}}
      8     <li>{{.}}</li>
      9   {{end}}
     10 </ul>
     11 {{else}}
     12 <p>No orphaned files</p>
     13 {{end}}
     14 
     15 {{template "_footer"}}