aboutsummaryrefslogtreecommitdiffstats
path: root/templates/home.html
blob: 41db698711d61b30f0c46b2ac49ea4102ab95ae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{{ template "HEADER" . }}
<h1>this is bomom.</h1>
<div class="well">
<p>
bommom is a tool for publishing and analysing electronics "bill of materials",
which are lists of components required to assemble a device like a digital
watch or a space telescope control module.
</p>
<p>
this is an open source project; get the code at <a
href="http://git.bnewbold.net/bommom/">git.bnewbold.net/bommom</a> or <a
href="http://github.com/bnewbold/bommom">github.com/bnewbold/bommom</a>. the
project includes a command line tool for managing and converting repositories
of BOMs. it is written in <a href="http://golang.org">golang</a> (the "go"
programming language).
</p>
</div>

<h3>all BOMs from all users</h3>
<table class="table">
{{ range .BomList }}
  <tr/>
  <td/><a href="/{{ .Owner }}/">{{ .Owner }}</a>/<a href="/{{ .Owner }}/{{ .Name }}/">{{ .Name }}</a>
{{ else }}
No Boms found!
{{ end }}
</table>
{{ template "FOOTER" . }}