diff options
author | bnewbold <bnewbold@robocracy.org> | 2012-04-23 12:14:39 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2012-04-23 12:14:39 -0400 |
commit | eb04c544afee65ca91cb07dbf62f670401a7f244 (patch) | |
tree | 99a299dadc12cadbdcf5c0110b392b25081ced73 /templates/user.html | |
parent | 7b6696714142de8deeb5ef4f144ac3ecf8116e3e (diff) | |
download | bommom-eb04c544afee65ca91cb07dbf62f670401a7f244.tar.gz bommom-eb04c544afee65ca91cb07dbf62f670401a7f244.zip |
basic view-only http interface
Diffstat (limited to 'templates/user.html')
-rw-r--r-- | templates/user.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/user.html b/templates/user.html new file mode 100644 index 0000000..f5c8983 --- /dev/null +++ b/templates/user.html @@ -0,0 +1,11 @@ +{{ template "HEADER" }} +<h1>{{ .User }} is a bommom user.</h1> +<b>Email:</b> <a href="mailto:{{ .Email }}">{{ .Email }}</a> +<ul> +{{ range .BomList }} +<li><a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a> +{{ else }} +No Boms found! +{{ end }} +</ul> +{{ template "FOOTER" }} |