-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBASE.html
87 lines (84 loc) · 4.04 KB
/
BASE.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=512" />
<title>resolv.moe</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/dom-to-image/2.6.0/dom-to-image.min.js"
integrity="sha512-01CJ9/g7e8cUmY0DFTMcUw/ikS799FHiOA0eyHsUWfOetgbx/t6oV4otQ5zXKQyIrQGTHSmRVPIgrgLcZi/WMA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<link rel="apple-touch-icon" sizes="180x180" href="/meta/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/meta/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/meta/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="stylesheet" href="/css/index.css?v3" />
<!-- <link rel="mask-icon" href="/meta/safari-pinned-tab.svg" color="#916db8"> -->
<meta name="msapplication-TileColor" content="#916db8" />
<meta name="theme-color" content="#916db8" />
<meta name="twitter:card" content="summary" />
<meta name="og:site_name" content="resolv.moe" />
<meta property="og:title" content="resolv" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://resolv.moe" />
<meta property="og:image" content="https://resolv.moe/meta/android-chrome-256x256.png" />
<meta property="og:description" content="resolv's personal site" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
</head>
<body background="/img/pattern.png">
<div class="fullscreen" style="background: url(/img/pattern.png)"></div>
<div style="display: flex; justify-content: center; align-items: center">
<div
style="
max-width: 600px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100vh;
"
>
<div style="margin: 0 auto 0 0; flex-direction: row; display: flex; z-index: 2" id="title">
<h1 style="font-size: 26pt; margin: 0" id="title_text">{{{TITLE}}}</h1>
<a style="margin-left: 5%; display: flex" id="back" href="{{{BACK_LINK}}}">
<svg
class="arrow"
id="arrow_left"
style="transform: rotate(180deg)"
width="31"
height="32"
viewBox="0 0 49 47"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M6.51999 3.61539L6.51999 4.50001L6.51999 42.6258L6.51999 43.3505L7.5 42.8695L47 23.483L7.5 4.09638L6.51999 3.61539Z"
fill="#916DB8"
/>
<path
d="M6.51999 3.61539L7.5 4.09638M6.51999 3.61539L1 0.999999L1 1.5L6.51999 4.50001M6.51999 3.61539L6.51999 4.50001M6.51999 43.3505L0.999997 46L0.999997 45.5L6.51999 42.6258M6.51999 43.3505L7.5 42.8695M6.51999 43.3505L6.51999 42.6258M7.5 4.09638L47 23.483L7.5 42.8695M7.5 4.09638L7.5 42.8695M6.51999 42.6258L6.51999 4.50001"
stroke="#916DB8"
/>
</svg>
<h1 style="margin: 0; color: #916db8">back</h1>
</a>
</div>
<!-- PANELS BEGIN -->
<div id="panels">
<div style="position: relative" class="panel" id="{{{ID}}}">{{{PAGE}}}</div>
</div>
<!-- PANELS END -->
<div style="width: 50vw; max-width: 600px" hidden="true" id="placeholder_panel"></div>
<script src="/js/animate_panel.js?v3" defer></script>
<script src="/js/guestbook.js" defer></script>
<canvas id="anim" style="position: absolute; height: 100vh; max-width: 600px; bottom: 0"></canvas>
</div>
</div>
</body>
</html>