-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
75 lines (75 loc) · 2.41 KB
/
template.html
File metadata and controls
75 lines (75 loc) · 2.41 KB
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
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cup Size Patterns</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
}
main {
max-width: 800px;
margin: auto;
display: flex;
flex-direction: column;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid black;
padding: 4px 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
a {
color: blue;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
main > img {
max-width: 100%;
margin-top: 20px;
margin-bottom: 20px;
align-self: center;
}
</style>
</head>
<body>
<main>
<h1>Bra Cup Patterns</h1>
<img src="assets/cup_size_4.svg">
<section>
<p>This project aims to digitize the bra cup drafting technique from the <a href="http://web.archive.org/web/20171023043741/http://www.foundationsrevealed.com/index-of-articles/bra-making/how-to-make-a-bra/165-bras-drafting-a-darted-cup">"How To Make A Bra 2" blog post</a> by Mark Garbarczyk (now accessible only via the Wayback Machine).</p>
<p>These cup sizes are not standard. "Size 4" corresponds to a UK size 34B.</p>
<p>Each pattern is an SVG file measured in millimeters. These files can be easily imported into any vector graphics application, such as Adobe Illustrator or Affinity Designer.</p>
</section>
<table>
<thead>
<tr>
<th>Cup Size</th>
<th>Over breast measurement</th>
<th>Pattern link</th>
</tr>
</thead>
<tbody>
{% for cup in cup_sizes %}
<tr>
<td>{{ cup.size_no }}</td>
<td>{{ cup.over_breast_measurement }}</td>
<td><a href="assets/cup_size_{{ cup.size_no }}.svg">pattern</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>