-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
128 lines (118 loc) · 6.02 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Open image viewer | image viewing redefined</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Open Image Viewer is a high performance, innovative and light-weight open source image viewer.">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.3/css/bulma.min.css" />
<link rel="stylesheet" href="./css/animations.css" />
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./css/clock.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link rel="icon" type="image/svg+xml" href="./resources/VectorIcon.svg">
<link rel="alternate icon" type="image/png" href="./resources/favicon-16x16.png" sizes="16x16">
<link rel="alternate icon" type="image/png" href="./resources/favicon-32x32.png" sizes="32x32">
<!--Safari specific-->
<!--link rel="mask-icon" href="/safari-pinned-tab.svg" color="#ff8a01"-->
<!--link rel="icon" type="image/png" href="./resources/favicon-96x96.png" sizes="96x96"-->
<script type="module" src="./js/clock.js"></script>
<script type="module" src="./js/date.js"></script>
<script type="module" src="./js/index.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132326144-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-132326144-1');
</script>
<!-- End Google Analytics -->
</head>
<body class="hero is-fullheight is-default is-bold">
<header class="hero-head">
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" id="logo" href="/">
<img src="./resources/VectorIcon.svg" alt="Logo" />
<span class="is-logo">
OPEN IMAGE VIEWER
</span>
</a>
<span class="navbar-burger burger" data-target="navbarMenu">
<span style="color: red; font-weight: bolder;height: 1px;"></span>
<span style="color: green;font-weight: bolder;height: 2px"></span>
<span style="color: blue;font-weight: bolder !important;height: 2px"></span>
</span>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-start">
<!--a id="home-page" class="navbar-item is-active">
Home
</a>
<a class="navbar-item" href="https://github.com/openimageviewer">
Code repository
</a-->
<!--a id="aboutPage" class="navbar-item">
About
</a-->
<a class="navbar-item" href="#">
<!--a class="navbar-item" href="http://forum.openimageviewer.com"-->
Forum (soon)
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">
Contact
</a>
<div class="navbar-dropdown">
<!--a class="navbar-item" href="mailto:[email protected]">
Email
</a-->
<a href="https://discordapp.com/invite/k9EfBHQ" class="navbar-item">
Discord
</a>
<a href="https://t.me/joinchat/GkYvy0gPEpGGFFhwhMa_4g" class="navbar-item">
Telegram
</a>
<a href="mailto:[email protected]" class="navbar-item">
Email ([email protected])
</a>
<a href="https://www.youtube.com/channel/UCwJk4KvwVzevZUuvlaDCvKQ" class="navbar-item">
YouTube
</a>
</div>
</div>
</div>
</div>
</div>
</nav>
</header>
<main id="hero-body" class="hero-body">
</main>
<footer class="hero-foot is-centered has-text-centered my-footer">
<div class="bitcoin">
<div class="is-inline-flex">
<span class="bitcoin-icon-wrap">
<span class="bitcoin-icon px-1 py-1 is-inline-flex fab fa-bitcoin fa-2x"></span>
</span>
<span class="bitcoin-text mt-1 px-5 is-inline-flex">Bitcoin Donate:
<a href="bitcoin:bc1qlj3evued99rqk8etjfc7kzh956rs2m9zkk577v">
<span class="bitcoin-address-text">bc1qlj3evued99rqk8etjfc7kzh956rs2m9zkk577v</span>
</a>
</span>
</div>
</div>
<div>
<span>Copyright © Open Image Viewer 2018 - <span id="date-container"></span>. All rights reserved.</span>
<br />
<span style="font-size: 0.8em;background-color: rgb(22, 22, 22);">
<a href="https://github.com/TheNicker">design by Demetrius Flavius</a>
</span>
</div>
</footer>
</body>
</html>