-
Notifications
You must be signed in to change notification settings - Fork 1
/
cryptofolio.html
137 lines (127 loc) · 4.97 KB
/
cryptofolio.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
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html>
<head>
<title>cryptofolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/perfect-scrollbar/perfect-scrollbar.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
<style>
body {
background-image: url("images/sven-scheuermeier-108248-unsplash.jpg");
background-size: cover;
}
.navbar__menu {
display: none; }
.navbar__menu--noMob {
display: block; }
@media (min-width: 992px) {
.navbar__menu {
display: block; } }
.navbar__menu li {
margin-left: 4pt;
backface-visibility: hidden;
display: inline-block; }
@media (min-width: 992px) {
.navbar__menu li {
margin-left: 16pt; } }
.navbar__menu a {
color: #fff; }
@media (min-width: 992px) {
.navbar__menu a {
opacity: 0.75; }
.navbar__menu a:hover {
opacity: 1; }
.navbar__menu a:after {
display: block;
content: '';
border-bottom: solid 1px #fff;
transform: scaleX(0);
transition: transform 250ms ease-in-out; }
.navbar__menu a:hover:after {
transform: scaleX(1); } }
</style>
</head>
<body>
<nav class="navbar__menu">
<ul>
<li><a href="./">Home</a></li>
<li><a href="./cryptohedge">Cryptohedge</a></li>
</ul>
</nav>
<h1 style="text-align:center;"><font color="White">
Cryptofolio
</h1>
<div class="limiter">
<div class="container-table100">
<div class="wrap-table100">
<div class="table100 ver1 m-b-110">
<div class="table100-head">
<table>
<thead>
<tr class="row100 head">
<th class="cell100 column1">Coin</th>
<th class="cell100 column2">Amount</th>
<th class="cell100 column3">Price(€)</th>
<th class="cell100 column4">Value(€)</th>
<th class="cell100 column5">Percentage</th>
<!--<th class="cell100 column6">Deviation</th>-->
</tr>
</thead>
</table>
</div>
<div class="table100-body js-pscroll">
<table>
<tbody>
{{range .CryptoArray}}
<tr class="row100 body">
<td class="cell100 column1">{{.Name}}</td>
<td class="cell100 column2"> {{.Amount}}</td>
<td class="cell100 column3">{{.Rate}}</td>
<td class="cell100 column4"> {{.Value}}</td>
<td class="cell100 column5"> {{.Percentage}}</td>
</tr>
{{end}}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<script>setTimeout(function() {window.location.reload();}, 60000)</script>
<!--===============================================================================================-->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/bootstrap/js/popper.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/select2/select2.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/perfect-scrollbar/perfect-scrollbar.min.js"></script>
<script>
$('.js-pscroll').each(function(){
var ps = new PerfectScrollbar(this);
$(window).on('resize', function(){
ps.update();
})
});
</script>
<!--===============================================================================================-->
<script src="js/main.js"></script>
</body>
</html>