bidet / internal / handlers / templates / repos.tmpl

@ 76c2a43fc2fd4f1136a71217835e7ec86f76d021 | 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}}