-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (48 loc) · 2.29 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
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Дневник тренировок</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google Fonts -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<!-- CSS Reset -->
<link rel="stylesheet" href="//cdn.rawgit.com/necolas/normalize.css/master/normalize.css">
<!-- Milligram CSS minified -->
<link rel="stylesheet" href="//cdn.rawgit.com/milligram/milligram/master/dist/milligram.min.css">
<link rel="stylesheet" href="blocks/exerciseAddForm/exerciseAddForm.css">
<link rel="stylesheet" href="blocks/exerciseInfo/exerciseInfo.css">
<link rel="stylesheet" href="blocks/exerciseResultForm/exerciseResultForm.css">
<link rel="stylesheet" href="blocks/trainingProgress/trainingProgress.css">
<link rel="stylesheet" href="blocks/app/app.css">
</head>
<body>
<div class="app">
<div class="exercise-info"></div>
<div class="exercise-add-form"></div>
<div class="training-progress"></div>
<div class="exercise-result-form"></div>
</div>
<script src="blocks/exerciseAddForm/exerciseAddForm.pug.js"></script>
<script src="blocks/exerciseAddForm/exerciseAddForm.js"></script>
<script src="blocks/exerciseInfo/exerciseInfo.pug.js"></script>
<script src="blocks/exerciseInfo/exerciseInfo.js"></script>
<script src="blocks/exerciseResultForm/exerciseResultForm.pug.js"></script>
<script src="blocks/exerciseResultForm/exerciseResultForm.js"></script>
<script src="blocks/trainingProgress/trainingProgress.pug.js"></script>
<script src="blocks/trainingProgress/trainingProgress.js"></script>
<script src="dataService/dataService.js"></script>
<script src="blocks/app/app.js"></script>
<!-- Application start -->
<script>
(function () {
'use strict';
// import
let App = window.App;
new App({
el: document.querySelector('.app')
});
})();
</script>
</body>
</html>