-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
117 lines (107 loc) · 4.58 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal blog of Boris Burkov</title>
<link rel="apple-touch-icon" sizes="57x57" href="/dist/favicons/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/dist/favicons/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/dist/favicons/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/dist/favicons/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/dist/favicons/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/dist/favicons/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/dist/favicons/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/dist/favicons/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/dist/favicons/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/dist/favicons/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/dist/favicons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/dist/favicons/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/dist/favicons/favicon-16x16.png">
<link rel="manifest" href="/dist/favicons/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/dist/favicons/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Splash screen styles copied over from _varioius.scss -->
<style>
/* Splash style */
.splash {
position: fixed;
z-index: 2000;
background: white;
color: gray;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* copied over from layout.scss */
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
}
.splash-title {
text-align: center;
max-width: 500px;
margin: 15% auto;
padding: 20px;
/* copied from bootstrap */
line-height: 1.42857143;
}
.splash-title h1 {
font-size: 26px;
/* copied from bootstrap */
margin-top: 10px;
margin-bottom: 10px;
font-weight: 200;
line-height: 1.1;
}
</style>
<!-- Start Single Page Apps for GitHub Pages -->
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// https://github.com/rafrex/spa-github-pages
// Copyright (c) 2016 Rafael Pedicini, licensed under the MIT License
// ----------------------------------------------------------------------
// This script checks to see if a redirect is present in the query string
// and converts it back into the correct url and adds it to the
// browser's history using window.history.replaceState(...),
// which won't cause the browser to attempt to load the new url.
// When the single page app is loaded further down in this file,
// the correct url will be waiting in the browser's history for
// the single page app to route accordingly.
(function(l) {
if (l.search) {
var q = {};
l.search.slice(1).split('&').forEach(function(v) {
var a = v.split('=');
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
});
if (q.p !== undefined) {
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + (q.p || '') +
(q.q ? ('?' + q.q) : '') +
l.hash
);
}
}
}(window.location))
</script>
<!-- End Single Page Apps for GitHub Pages -->
<link href="/dist/app.88f6307.css" rel="stylesheet"></head>
<body class="fixed-navbar fixed-sidebar">
<!-- Simple splash screen-->
<div class="splash">
<div class="color-line"></div>
<div class="splash-title">
<h1>Хорошо висим</h1>
<p>Реактивные вычисления такие реактивные... </p>
<div class="spinner">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</div>
</div>
<div id="main"></div>
<script type="text/javascript" src="/dist/app.88f6307.js"></script></body>
</html>