blob: 51db1c57efd3265bc17033a02bb0e44e95ca71c4 [file] [log] [blame]
<!--
Copyright 2009 The Go Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
{{define "layout"}}
<p>
<table class="layout">
<tr>
<th align="left">File</th>
<td width="25">&nbsp;</td>
<th align="right">Bytes</th>
</tr>
<tr>
<td><a href="../">../</a></td>
</tr>
{{range .dir}}{{if .IsDir}}
<tr><td align="left"><a href="{{.Name}}/">{{.Name}}/</a><td></tr>
{{end}}{{end}}
{{range .dir}}{{if not .IsDir}}
<tr><td align="left"><a href="{{.Name}}">{{.Name}}</a><td align="right">{{.Size}}</tr>
{{end}}{{end}}
</table>
</p>
{{end}}