-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (64 loc) · 2.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>IT job search</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico?">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,600i,700,700i,900,900i&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/search.css">
<link rel="stylesheet" type="text/css" href="css/nav.css">
<link rel="stylesheet" type="text/css" href="css/post.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<link rel="stylesheet" type="text/css" href="css/pagination.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<!-- NAV BAR-->
<span class="open" onclick="openNav()">☰</span>
<div id="nav" class="overlay">
<a href="javascript:void();" onclick="closeNav()" class="close">⛌</a>
<div class="overlay-content">
<a href="/iseek" class="logo"><img src="imgs/logo_old.png" alt="liweisure"></a>
<!-- <a href="/" id="home" class="nav-item link-anm">Home</a> -->
<!-- <a href="/resume" id="about" class="nav-item link-anm">About me</a> -->
<form class="search-form">
<div class="search">
<input type="text" class="searchTerm" placeholder="What are you looking for?">
<input type="submit" class="searchButton" value="Get it">
<!-- </input> -->
</form>
</div>
</div>
</div>
<div id="loading"></div>
<div class="result container">
<div class="left-side">
<h4 class="popular">popular search</h4>
<ol style="list-style-type: none;"></ol>
</div>
<div id="jobs">
</div>
<div class="right-side">
<div id="view-detail"></div>
</div>
</div>
<!-- footer -->
<footer id="footer"></footer>
<!-- end footer -->
<script src="js/index.js"></script>
<script src="js/search.js"></script>
<script>
function openNav() {
document.getElementById("nav").style.width = "100%";
$(".open")[0].style.opacity = 0;
}
function closeNav() {
document.getElementById("nav").style.width = "0";
$(".open")[0].style.opacity = 1;
}
</script>
</body>
</html>