-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
120 lines (119 loc) · 4.66 KB
/
search.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Simple Table</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" href="css/uui-all.css" />
<link rel="stylesheet" href="css/custom-styles.css" />
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/lib/components/awesome-bootstrap-checkbox.css" />
<link rel="stylesheet" href="css/lib/components/datepicker3.css" />
<link rel="stylesheet" href="css/lib/components/bootstrap-timepicker.css" />
<link rel="stylesheet" href="css/lib/components/bootstrap-select.min.css" />
<link rel="stylesheet" href="css/lib/components/jquery.mCustomScrollbar.css" />
<link rel="stylesheet" href="jquery-ui/css/smoothness/jquery-ui-1.10.4.custom.min.css" />
<script src="js/lib/jquery-1.11.1.min.js"></script>
<script src="js/lib/components/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/lib/jquery.cookie.js"></script>
<script src="jquery-ui/jquery-ui-1.10.4.custom.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="js/uui-core.min.js" type="text/javascript"></script>
<script src="js/lib/components/bootstrap-datepicker.js"></script>
<script src="js/lib/components/bootstrap-timepicker.min.js"></script>
<script src="js/lib/components/bootstrap-select.min.js"></script>
<script src="js/utils.js" type="text/javascript"></script>
<!-- IE9- support of HTML5 -->
<!--[if lt IE 9]>
<script src="js/lib/html5shiv.js"></script>
<script src="js/lib/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="replace site-header">replace</div>
</header>
<div class="wrapper">
<div class="replace left-side-bar">replace</div>
<div class="uui-main-container page-inside">
<main>
<div class="pattern-top"></div>
<div class="main-content">
<div class="main-content-hg">
<div class="support-title"><i class="fa fa-comments-o"></i>Support</div>
<div id="search-results">
<ul>
<li class="box">
<h3>JDI Skype</h3>
<p>JDI Skype group with active JDI users</p>
<a href="https://join.skype.com/u2Cel0MWHkAO" target="_blank">Join Skype group</a>
</li>
<li class="box">
<h3>JDI Owner contact</h3>
<p>Write an email directly to Framework owner and main architect Iovlev Roman</p>
<a href="mailto:roman.iovlev.jdi@gmail.com" target="_blank">Write email</a>
</li>
<li class="box">
<h3>JDI Test Site</h3>
<p>JDI Site for testing</p>
<a href="https://jdi-testing.github.io/jdi-light/" target="_blank">Visit Site</a>
</li>
<li class="box">
<h3>JDI Youtube channel</h3>
<p>JDI Tutorial Official Youtube</p>
<a href="https://www.youtube.com/channel/UCck0VgwbPVgXht5h6PGCdgg/videos?view_as=subscriber" target="_blank">Visit Channel</a>
</li>
<li class="box">
<h3>JDI Documentation</h3>
<p>JDI Documentation</p>
<a href="https://jdi-docs.github.io/jdi-light" target="_blank">See more</a>
</li>
<li class="box invisible">
<h3>JDI VK Group</h3>
<p>Russian Community VK group</p>
<a href="https://vk.com/jdi_framework" target="_blank">Visit Group</a>
</li>
<li class="box invisible">
<h3>JDI Facebook Group</h3>
<p>English Community Facebook group</p>
<a href="https://www.facebook.com/groups/jdi.framework/" target="_blank">Visit Group</a>
</li>
<li class="box">
<h3>JDI Partners Group - Coma QA</h3>
<p>Minsk Testing community Coma QA</p>
<a href="https://www.facebook.com/comaqa.by/" target="_blank">Visit Group</a>
</li>
</ul>
</div>
</div>
<div class="pagination">replace</ul>
</div>
</main>
</div>
<div class="replace right-side-bar">replace</div>
</div>
<footer>
<div class="replace footer">replace</div>
</footer>
<Script language="JavaScript">
UUI.Vertical_Menu.init({"open":true});
</script>
<script>
$('.selectpicker').selectpicker();
</script>
<script>
setTimeout(function() {
$('.invisible').each(function(index) {
$(this)[0].classList.remove('invisible')
})
}, 2000);
</script>
<script>
includeSideBar();
activateTopElement(3,4);
includePagination();
</script>
</body>
</html>