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/user.html | |
| parent | cc783ca52451587a471d109c9d0229c3c21c29b8 (diff) | |
| download | bommom-7cd921c74d03c2bfe50a326d97bac947660b1b30.tar.gz bommom-7cd921c74d03c2bfe50a326d97bac947660b1b30.zip | |
add basic bootstrap styling
Diffstat (limited to 'templates/user.html')
| -rw-r--r-- | templates/user.html | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/templates/user.html b/templates/user.html index f5c8983..296db8c 100644 --- a/templates/user.html +++ b/templates/user.html @@ -1,11 +1,11 @@  {{ template "HEADER" }} -<h1>{{ .User }} is a bommom user.</h1> -<b>Email:</b> <a href="mailto:{{ .Email }}">{{ .Email }}</a> -<ul> +<h1>{{ .UserName }} is a bommom user.</h1> +<table class="table">  {{ range .BomList }} -<li><a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a> +  <tr/> +  <td/><a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a>  {{ else }}  No Boms found!  {{ end }} -</ul> +</table>  {{ template "FOOTER" }} | 
