-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
71 lines (56 loc) · 1.79 KB
/
Copy pathstore.html
File metadata and controls
71 lines (56 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Musicon</title>
<link href="public/style.css" rel="stylesheet" type="text/css">
<script src="handlebars.min.js"></script>
<script id="templateHB" type="text/x-handlebars-template">
{{#each instruments}}
<article class="instrument">
<img class="image" src="{{this.image}}" alt="{{this.name}}">
<section class="details">
<h2 class="name">{{this.name}}</h2>
<p class="description">{{this.description}}</p>
{{#if sale}}
<p class="price"><del>Price: {{this.price}}</del></p>
<p class="sale">On Sale! {{this.sale}}</p>
{{else}}
<p class="price">Price: {{this.price}}</p>
{{/if}}
</section>
</article>
{{/each}}
</script>
</head>
<body>
<header>
<section class="container">
<h1 class="branding">Musicon</h1>
<nav>
<ul class="navbar">
<li>
<a href="index.html">Home</a>
</li>
<li class="current">
<a href="store.html">Store</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul> <!-- end ul navbar -->
</nav>
</section>
</header>
<article id="showcase">
<section id="information" class="container">
</section>
</article>
<footer>
<p>© Musicon 2020</p>
</footer>
<script src="public/main.js"></script>
</body>
</html>