-
Notifications
You must be signed in to change notification settings - Fork 852
/
Copy pathbom.html
64 lines (61 loc) · 1.09 KB
/
bom.html
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>%1</title>
<style type="text/css">
.meta {
font-size: small;
margin: 0.4em 0;
}
table {
border-collapse: collapse;
}
th {
font-weight: bold;
text-align: left;
border-bottom: 1px solid black;
padding: 0.1em 1.5em 0.2em 0.1em;
}
td {
border-bottom: 1px solid #CCC;
padding: 0.5em 1.5em 0.5em 0.1em;
}
.props {
font-size: smaller;
}
</style>
</head>
<body>
<h1>Bill of Materials: %2</h1>
<p class="meta">%3</p>
<p class="meta">%4</p>
<h2>Assembly List</h2>
<table>
<thead>
<tr>
<th>Label</th>
<th>Part Type</th>
<th>Properties</th>
</tr>
</thead>
<tbody>
%5
</tbody>
</table>
<h2>Shopping List</h2>
<table>
<thead>
<tr>
<th>Amount</th>
<th>Part Type</th>
<th>Properties</th>
</tr>
</thead>
<tbody>
%6
</tbody>
</table>
<p class="meta"><br/>Exported with Fritzing %7- http://fritzing.org</p>
</body>
</html>