bidet / internal / handlers / templates / repos.tmpl

@ 26a47565ffd9864067443fb09fb902ddcb950790 | history


{{define "title"}}{{.Title}}{{end}}
{{define "content"}}
<h1>{{.Title}}</h1>
<h4>{{.Header}}</h4>
<table>
<tbody>
{{range .Repos}}
        <tr>
            <td><a href="/{{.Name}}">{{.Name}}</a></td>
            <td>{{humanize .Updated}}</td>
        </tr>
    {{end}}
</tbody>
</table>
{{end}}

{{define "repos"}}
{{template "base" .}}
{{end}}