-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
22 lines (21 loc) · 906 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Путник — сервис для каучсерфинга</title>
<link rel="stylesheet" href="/src/styles/styles.scss" />
<link rel="icon" type="image/x-icon" href="/favicon.png" />
<link rel="manifest" href="./manifest.json" />
</head>
<body>
<div id="root"></div>
<noscript>
Please enable JavaScript in order to use this app.
</noscript>
</body>
<script src="/include/handlebars.runtime.js"></script>
<script type="module" src="/precompiled-templates.js"></script>
<script src="https://api-maps.yandex.ru/2.1/?apikey=551883e3-86de-49b9-8447-4485c84e10fd&lang=ru_RU"></script>
<script type="module" src="./src/index.ts"></script>
</html>