forked from FrankNewII/SPAFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (55 loc) · 2.22 KB
/
index.html
File metadata and controls
62 lines (55 loc) · 2.22 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!--<script src="dist/framework/main.min.js"></script>-->
<script src="src/scripts/common/functions/types.js"></script>
<script src="src/scripts/common/functions/array.js"></script>
<script src="src/scripts/common/functions/object.js"></script>
<script src="src/scripts/common/element.js"></script>
<script src="src/scripts/common/events.js"></script>
<script src="src/scripts/common/xhr.js"></script>
<script src="src/scripts/common/stores/modelsStore.js"></script>
<script src="src/scripts/common/stores/templateStore.js"></script>
<script src="src/scripts/common/models/element.js"></script>
<script src="src/scripts/common/models/parentComponent.js"></script>
<script src="src/scripts/common/services/DI.js"></script>
<script src="src/scripts/common/services/router.js"></script>
<script src="src/scripts/common/services/dataSync.js"></script>
<script src="src/scripts/common/services/templatesCompiler.js"></script>
<script src="src/scripts/common/stores/componentsStore.js"></script>
<script src="dist/application/application.models.js"></script>
<script src="dist/application/application.components.min.js"></script>
<link rel="stylesheet" href="dist/styles/main.min.css">
</head>
<body>
<main-controller>
<section class="container">
<search-section>
<search-component>
<button>Search</button>
<input type="text"/>
</search-component>
<gallery-component>
<div>
<div class="gallery">
</div>
</div>
</gallery-component>
</search-section>
<result-section>
<gallery-component>
<div>
<div class="gallery">
</div>
</div>
</gallery-component>
</result-section>
</section>
</main-controller>
</body>
</html>