bidet / internal / handlers / templates / repos.tmpl

@ 2b9e13786d6dff5c324880d0a26bd000123e9156 | 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}}