-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.32 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
<!DOCTYPE html>
<html>
<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" />
<meta name="description" content="Personal web application of Pavel Harelyshau" />
<meta name="theme-color" content="#0a0d10" />
<title>harelyshau.dev</title>
<link rel="apple-touch-icon" href="./resource/image/favicon/apple-touch-icon.png" />
<link rel="icon" href="./favicon.ico" sizes="any" />
<link rel="icon" href="./resource/image/favicon/favicon.svg" type="image/svg+xml" />
<link rel="manifest" href="./manifest.webmanifest" />
<script>
navigator.serviceWorker.register('/service-worker.js');
window.addEventListener('beforeinstallprompt', (installEvent) => window.ph = { installEvent });
</script>
<script
id="sap-ui-bootstrap"
src="https://openui5.hana.ondemand.com/resources/sap-ui-core.js"
data-sap-ui-theme="sap_horizon"
data-sap-ui-compatVersion="edge"
data-sap-ui-async="true"
data-sap-ui-oninit="module:sap/ui/core/ComponentSupport"
data-sap-ui-resourceroots='{"pharelyshau": "./"}'
></script>
</head>
<body class="sapUiBody" id="content">
<div
data-sap-ui-component
data-name="pharelyshau"
data-id="container"
data-settings='{"id" : "pharelyshau"}'
></div>
</body>
</html>