index.html - staticgit - A git static site generator in GO with HTML output!
 (HTM) git clone git://jay.scot/staticgit
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
       index.html (387B)
       ---
            1 {{define "content"}}
            2 <table>
            3   <thead>
            4     <tr>
            5       <th>Name</th>
            6       <th>Description</th>
            7       <th>Last commit</th>
            8     </tr>
            9   </thead>
           10   <tbody>
           11     {{range .Repos}}
           12     <tr>
           13       <td><a href="/src/{{.Name}}/index.html">{{.Name}}</a></td>
           14       <td>{{.Description}}</td>
           15       <td>{{.LastMod.Format "2006-01-02 15:04:05"}}</td>
           16     </tr>
           17     {{end}}
           18   </tbody>
           19 </table>
           20 {{end}}