-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
110 lines (67 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Expos | Private Suite Magazine</title>
<link rel="icon" href="/img/psm_bw.png" type="image/x-icon">
<meta name="description" content="Expos is a collection of unqiue art and interactive pieces curated by Private Suite Magazine">
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="Expos">
<meta property="og:site_name" content="Expos | Private Suite Magazine">
<meta property="og:description" content="Expos is a collection of unqiue art and interactive pieces curated by Private Suite Magazine">
<meta property="og:url" content="https://expos.privatesuitemag.com/">
<meta property="og:image" content="https://expos.privatesuitemag.com/img/psm_bw.png">
<!-- Twitter -->
<meta name="twitter:image" content="https://privatesuitemag.com/img/psm_bw.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:alt" content="Expos">
<meta name="twitter:site" content="@privatesuitemag">
<style>
.loading_screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 1;
background-color: white;
z-index: 100;
transition: 0.2s all;
}
.loading_screen img {
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 250px;
}
.loading_screen.hidden {
opacity: 0;
}
</style>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="loading_screen">
<img src="img/psm_bw.png">
</div>
<div id="app">
<nav>
<a id="menu_banner" href="#/">expos</a>
<div id="menu_items">
<a>
</a>
</div>
</nav>
<main>
</main>
</div>
<script src="js/ejs.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>