summary refs log tree commit diff
path: root/showcase/bike/parts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'showcase/bike/parts/index.html')
-rw-r--r--showcase/bike/parts/index.html103
1 files changed, 103 insertions, 0 deletions
diff --git a/showcase/bike/parts/index.html b/showcase/bike/parts/index.html
new file mode 100644
index 0000000..dc03fa2
--- /dev/null
+++ b/showcase/bike/parts/index.html
@@ -0,0 +1,103 @@
+<!doctype html>
+<html lang="en"><head><meta charset="utf-8">
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="stylesheet" href="../css/main.css">
+<link rel="shortcut icon" href="../i/fav.png">
+<title>Bike Mastery: Parts</title></head><body>
+
+<header>
+	<h1>Parts Inventory
+	<i>Bike Mastery</i></h1>
+</header>
+
+<nav>
+	<a href=".." class="btn">Home</a>
+	<a href="../guides" class="btn">Guides</a>
+	<a href="" class="btn">Parts</a>
+	<a href="../order" class="btn">Order</a>
+	<a href="../template" class="btn">Template</a>
+	<a href="http://github.com/4stc/bike_mastery" class="btn">Source</a>
+	<i>Bike Mastery / Parts</i>
+</nav>
+
+<main class="grid"><div>
+	<h2>Bike Parts</h2>
+	<p>Here you can see our current supply of bike parts.</p>
+</div><div>
+	<table>
+		<caption>Our Inventory</caption>
+		<tr>
+			<th>ID</th>
+			<th>Brand</th>
+			<th>Item</th>
+			<th>Color</th>
+			<th>Stock</th>
+			<th>Cost</th>
+		</tr><tr>
+			<td>1</td>
+			<td>Best Bike Co.</td>
+			<td>26x2.125 Inch Wheels</td>
+			<th>Silver</th>
+			<td>23</td>
+			<td>$125</td>
+		</tr><tr>
+			<td>2</td>
+			<td>Best Bike Co.</td>
+			<td>26x2.125 Inch Tires</td>
+			<th>Dark Grey</th>
+			<td>19</td>
+			<td>$90</td>
+		</tr><tr>
+			<td>3</td>
+			<td>Best Bike Co.</td>
+			<td>Seat/Saddle</td>
+			<th>Black</th>
+			<td>22</td>
+			<td>$55</td>
+		</tr><tr>
+			<td>4</td>
+			<td>Best Bike Co.</td>
+			<td>Pedals</td>
+			<th>Silver</th>
+			<td>24</td>
+			<td>$45</td>
+		</tr><tr>
+			<td>5</td>
+			<td>Tough Bike Co.</td>
+			<td>26x3 Inch Heavy-Duty Wheels</td>
+			<th>Black</th>
+			<td>17</td>
+			<td>$160</td>
+		</tr><tr>
+			<td>6</td>
+			<td>Tough Bike Co.</td>
+			<td>26x3 Inch All-Terrain Tires</td>
+			<th>Black</th>
+			<td>16</td>
+			<td>$125</td>
+		</tr><tr>
+			<td>7</td>
+			<td>Best Bike Co.</td>
+			<td>Handlebar</td>
+			<th>Silver</th>
+			<td>21</td>
+			<td>$55</td>
+		</tr><tr>
+			<td>8</td>
+			<td>Best Bike Co.</td>
+			<td>Handlebar Grips</td>
+			<th>Dark Grey</th>
+			<td>22</td>
+			<td>$35</td>
+		</tr>
+	</table>
+</div></main>
+
+<footer>
+	<p>Made by Name Surname |
+	<a href="../i/parts_mobile.png" target="_blank">Mobile Wireframe</a> |
+	<a href="../i/parts_desktop.png" target="_blank">Desktop Wireframe</a>
+	</p>
+</footer>
+
+</body></html>