diff options
author | bnewbold <bnewbold@robocracy.org> | 2012-09-19 18:41:30 +0200 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2012-09-19 18:41:30 +0200 |
commit | 7cd921c74d03c2bfe50a326d97bac947660b1b30 (patch) | |
tree | 78561ca1fcc0069bdc955dda564dbf0cebb81e00 /templates/home.html | |
parent | cc783ca52451587a471d109c9d0229c3c21c29b8 (diff) | |
download | bommom-7cd921c74d03c2bfe50a326d97bac947660b1b30.tar.gz bommom-7cd921c74d03c2bfe50a326d97bac947660b1b30.zip |
add basic bootstrap styling
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" }} |