-
Notifications
You must be signed in to change notification settings - Fork 869
/
index.html
39 lines (35 loc) · 1023 Bytes
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="referrer" content="never" />
<title>Vue.js Poster Shop</title>
<link rel="icon" href="public/favicon.ico" type="image/x-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Luckiest+Guy" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Lato|Montserrat" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="public/style.css">
</head>
<body>
<div id="app">
<div class="header">
<h1>Vue.js Poster Store</h1>
</div>
<div class="main">
<div class="products">
<p>Products go here.</p>
</div>
<div class="cart">
<h2>Shopping Cart</h2>
<div>
No items in the cart.
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="/reload/reload.js"></script>
<script type="text/javascript" src="public/script.js"></script>
</body>
</html>