forked from abak-press/javascript-tutorial-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (36 loc) · 1.1 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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Javascript Tutorial - part 2</title>
<link rel="stylesheet" href="/public/package.css">
<script>
const app = {
modules: {},
config: {}
}
</script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
</head>
<body>
<div class="main-title js-title-example"></div>
<div class="main grid-row">
<div class="grid-col-uv-24"><a href="/admin/traits">Перейти к администрированию характеристик</a></div>
</div>
<div class="main grid-row">
<div class="grid-col-uv-6">
<div class="catalogue-filter">
<h2>Filter here:</h2>
<div class="js-catalogue-filter-wrapper"></div>
</div>
</div>
<div class="grid-col-uv-17 grid-col-uv-offset-1">
<h2>Catalogue</h2>
<div class="js-catalogue-products-wrapper catalogue-products"></div>
</div>
</div>
<div class="js-popup-wrapper popup-wrapper"></div>
<script src="/public/bundle.js"></script>
</body>
</html>