-
Notifications
You must be signed in to change notification settings - Fork 622
/
index.html
41 lines (39 loc) · 1.31 KB
/
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
40
41
<!doctype html>
<html lang="en" xmlns:v-on="http://www.w3.org/1999/xhtml" xmlns:v-bind="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta name="referrer" content="never" />
<title>Vue.js Poster Shop</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="/public/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,700,800" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Baloo+Bhaina" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="/public/style.css">
</head>
<body>
<div id="app">
<div class="header">
<div class="container">
<div class="title">
<img src="public/logo.png">
<h1>Vue.js Poster Shop</h1>
</div>
</div>
</div>
<div class="main container">
<div class="products">
<p>Products go here.</p>
</div>
<div class="cart">
<h2>Shopping Cart</h2>
<div>
Total: $0.00
</div>
</div>
</div>
</div>
<!-- Scripts -->
<script src="/reload/reload.js"></script>
<script type="text/javascript" src="public/script.js"></script>
</body>
</html>