diff options
Diffstat (limited to 'templates/home.html')
-rw-r--r-- | templates/home.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/templates/home.html b/templates/home.html index 1b328c3..8749c58 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,10 +1,11 @@ {{ template "HEADER" }} <h1>this is bomom.</h1> -<ul> +<table class="table"> {{ range .BomList }} -<li><a href="/{{ .Owner }}/">{{ .Owner }}</a>/<a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a> + <tr/> + <td/><a href="/{{ .Owner }}/">{{ .Owner }}</a>/<a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a> {{ else }} No Boms found! {{ end }} -</ul> +</table> {{ template "FOOTER" }} |