-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (92 loc) · 3.53 KB
/
index.html
File metadata and controls
97 lines (92 loc) · 3.53 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120242920-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120242920-1');
</script>
<meta charset="utf-8">
<meta name="description" content="Cryptocurrency portfolio management application which automatically retrieves balances and trades using exchange APIs">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Foxfolio - Cryptocurrency portfolio tracker</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.2/css/bulma.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500">
<script defer src="https://use.fontawesome.com/releases/v5.0.0/js/all.js"></script>
<link rel="stylesheet" href="style/global.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div class="section">
<div class="container is-hidden-mobile">
<div style="text-align: center; padding: 1rem">
<img src="img/logo_large.png" style="width: 450px;" alt="foxfolio"/>
</div>
</div>
<div class="container is-hidden-tablet">
<div style="text-align: center; padding: 1rem">
<img src="img/logo_small.png" style="width: 300px;" alt="foxfolio"/>
</div>
</div>
</div>
<div class="section" style="padding-top: 0">
<div class="container has-text-centered">
<h1 class="title">The automated cryptocurrency portfolio tracker</h1>
<p class="is-size-5">Foxfolio is a cryptocurrency portfolio management application which automatically retrieves balances and trades using exchange APIs.</p>
</div>
</div>
<div class="section" style="padding-top: 0">
<div class="container is-hidden-mobile">
<div style="text-align: center; padding: 1rem">
<h2 class="title is-4">Download for your OS</h2>
<a class="button is-large"
href="https://github.com/foxfolio/foxfolio-desktop/releases/download/v0.0.10/foxfolio-setup-0.0.10.exe">
<span class="icon is-medium">
<i class="fab fa-windows"></i>
</span>
<span>Windows</span>
</a>
<a class="button is-large"
href="https://github.com/foxfolio/foxfolio-desktop/releases/download/v0.0.10/Foxfolio-0.0.10.dmg">
<span class="icon is-medium">
<i class="fab fa-apple"></i>
</span>
<span>MacOS</span>
</a>
<a class="button is-large"
href="https://github.com/foxfolio/foxfolio-desktop/releases/download/v0.0.10/foxfolio-0.0.10-x86_64.AppImage">
<span class="icon is-medium">
<i class="fab fa-linux"></i>
</span>
<span>Linux</span>
</a>
</div>
</div>
</div>
<div class="section" style="padding-top: 0">
<div class="container">
<div class="columns screenshot">
<img src="img/screenshots/foxfolio.png" alt="foxfolio screenshot">
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
Created by Andreas Greimel
</p>
</div>
</div>
</footer>
<a href="https://github.com/foxfolio/foxfolio-desktop"
aria-label="View source on Github"
style="position: absolute; top: 0; border: 0; right: 0;">
<object data="img/github-corner.svg" style="pointer-events: none;"></object>
</a>
</body>
</html>