-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathview.html
126 lines (122 loc) · 4.89 KB
/
view.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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="bullion management site, rare coins, gold, silver, platinum">
<meta name="author" content="CSE134B Dream Team">
<link rel="stylesheet" type="text/css" href="./style/style.css">
<meta name=viewport content="width=device-width, initial-scale=.8, minimum-scale = .8, user-scalable=yes">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<script src="./js/parse-1.4.2.js"></script>
<script src="./js/jquery-1.11.2.min.js"></script>
<script src="./js/backend.js"></script>
<script src="./js/velocity.min.js"></script>
<script src="./js/render.js"></script>
<script src="./js/main.js"></script>
<title>Gold Item - ShinyStack</title>
</head>
<body>
<noscript>Please enable JavaScript in order to use this website.</noscript>
<script type="text/javascript">
loadTopNav();
</script>
<script type="text/javascript">
loadSideNav(1);
</script>
<section class="main-section">
<section class="coin_wrapper">
<div class="mobile-nav">
<a class="return_link" href="#">
<svg class="icon icon-keyboard-arrow-left">
<symbol id="icon-keyboard-arrow-left" viewBox="0 0 1024 1024">
<title>keyboard-arrow-left</title>
<path class="path1" d="M657.707 696.96l-195.627-195.627 195.627-195.627-60.373-60.373-256 256 256 256z"></path>
</symbol>
<use xlink:href="#icon-keyboard-arrow-left"></use>
</svg>
</a>
ITEM DETAIL
</div>
<div class="coin_main">
<a class="return_link" href="#">
<div class="breadcrumb">
<svg class="icon icon-play-arrow-rev">
<symbol id="icon-play-arrow" viewBox="0 0 1024 1024">
<title>play-arrow</title>
<path class="path1" d="M682.667 213.333v597.333l-469.333-298.667z"></path>
</symbol>
<use xlink:href="#icon-play-arrow"></use>
</svg>
Item Detail
</div>
</a>
<section class="coin_image">
<div class="img_box">
<div class="img_circle"></div>
</div>
</section>
<section class="coin_detail">
<table>
<!--
<tr>
<td>Metal</td>
<td>Gold</td>
</tr>
<tr>
<td>Type</td>
<td>US Eagle</td>
</tr>
<tr>
<td>Purchase Date</td>
<td>04 March 2015</td>
</tr>
<tr>
<td>Qty.</td>
<td>1</td>
</tr>
<tr>
<td>Premium</td>
<td>47.00</td>
</tr>
<tr>
<td>Unit Price</td>
<td>1250.60</td>
</tr>
<tr>
<td>Gold %</td>
<td>0.999</td>
</tr>
<tr>
<td>Weight/unit (g)</td>
<td>1.244</td>
</tr>
<tr>
<td>Gold g/u</td>
<td>1.244</td>
</tr>
<tr>
<td>Gold ozt/u</td>
<td>0.0400</td>
</tr>
<tr>
<td>Total au (ozt)</td>
<td>0.0400</td>
</tr>
<tr>
<td><strong>TOTAL</strong></td>
<td><strong>1199.10</strong></td>
</tr>
*/
-->
</table>
<p onclick= "deleteBullion()" style="cursor:pointer;"><span id="save">Delete from my stack</span></p>
</section>
</div>
</section>
</section>
<script type="text/javascript">
loadFooter();
</script>
</body>
</html>