summary refs log tree commit diff
path: root/showcase/bike/template/index.html
blob: 09e4faf0dbc249b4488001e228dd234cf5e411e4 (plain) (blame)
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
<!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: Template</title></head><body>

<header>
	<h1>Template Page
	<i>Bike Mastery</i></h1>
</header>

<nav>
	<a href=".." class="btn">Home</a>
	<a href="../guides" class="btn">Guides</a>
	<a href="../parts" class="btn">Parts</a>
	<a href="../order" class="btn">Order</a>
	<a href="" class="btn">Template</a>
	<a href="http://github.com/4stc/bike_mastery" class="btn">Source</a>
	<i>Bike Mastery / Template</i>
</nav>

<main class="grid"><div>
	<h2>Column 1</h2>
	<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit,
	sed do eiusmod tempor incididunt ut labore et dolore magna
	aliqua. Ut enim ad minim veniam, quis nostrud exercitation
	ullamco laboris nisi ut aliquip ex ea commodo consequat.</p>
</div><div>
	<h2>Column 2</h2>
	<h3>Example List</h3>
	<ul>
		<li>example one</li>
		<li>example two</li>
		<li>example three</li>
	</ul>
	<h3>Another Example</h3>
	<ul>
		<li>example one</li>
		<li>example two</li>
		<li>example three</li>
	</ul>
</div></main>

<footer>
	<p>Made by Name Surname |
	<a href="../i/template_mobile.png" target="_blank">Mobile Wireframe</a> |
	<a href="../i/template_desktop.png" target="_blank">Desktop Wireframe</a>
	</p>
</footer>

</body></html>