-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
99 lines (59 loc) · 3.04 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
<!doctype html>
<html lang="ru">
<head>
<!--META-->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="keywords" content="Конструктор футболок">
<meta name="description" content="Конструктор футболок">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<title>Конструктор футболок</title>
<!--FONTS-->
<!--Roboto-->
<link href='https://fonts.googleapis.com/css?family=Roboto:400,400italic,700,700italic&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
<!--Material glyphicons-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--CSS-->
<link media="all" type="text/css" href="lib/bootstrap-3.3.6-dist/css/bootstrap.min.css" rel="stylesheet">
<link media="all" type="text/css" href="lib/spectrum/spectrum.css" rel="stylesheet">
<link media="all" type="text/css" href="css/style.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css">
<!--FAVICONS-->
<link rel="shortcut icon" href="favicons/favicon.ico" />
<link rel="icon" sizes="16x16 32x32" href="favicons/favicon.ico">
<link rel="apple-touch-icon-precomposed" href="favicons/favicon-152.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="favicons/favicon-144.png">
<meta name="application-name" content="Конструктор футболок">
<meta name="msapplication-tooltip" content="Создавайте дизайн футболок онлайн!">
<meta name="msapplication-config" content="favicons/ieconfig.xml">
<meta name="theme-color" content="#B71C1C">
</head>
<body>
<div id="appwrapper"></div>
</body>
<!--JS-->
<!--JQuery, JQuery UI and plugins-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js" integrity="sha256-xNjb53/rY+WmG+4L6tTl9m6PpqknWZvRt0rO1SRnJzw=" crossorigin="anonymous"></script>
<script src="lib/jquery-plugins/jquery-ui-touch-punch/jquery.ui.touch-punch.min.js"></script>
<!--Bootstrap-->
<script src="lib/bootstrap-3.3.6-dist/js/bootstrap.min.js"></script>
<!--React development-->
<!--
<script src="react-15.0.2/react.js"></script>
<script src="react-15.0.2/react-dom.js"></script>
<script src="react-15.0.2/browser.min.js"></script>
-->
<!--React production-->
<script src="lib/react-15.0.2/react.min.js"></script>
<script src="lib/react-15.0.2/react-dom.min.js"></script>
<script src="lib/react-15.0.2/browser.min.js"></script>
<!--Other-->
<script src="lib/spectrum/spectrum.js"></script>
<script src="lib/html2canvas/html2canvas.js"></script>
<!--Custom-->
<script type="text/babel" src="js/constructor.js"></script>
<!--/JS-->
</html>