forked from spreered/js_workshop_job
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·131 lines (125 loc) · 4.24 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<style>
table h4{
font-weight: bold;
}
table.positionlist p.source{
font-size:12px;
}
table.positionlist p.source a.company {
color: #999;
text-decoration: none;
}
table.positionlist p.source .fulltime {
color: #1d9a00;
}
table.positionlist .meta {
width: 1%;
font-size: 12px;
white-space: nowrap;
padding-left: 30px;
}
table.positionlist .meta span {
display: block;
text-align: right;
color: #666;
}
.m-0-auto{
margin: 0 auto;
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item is-size-4 has-text-weight-semibold" href="https://bulma.io">
GitHub Job
</a>
<a role="button" id="navbar-burger" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbar-menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar-menu" class="navbar-menu">
<div class="navbar-start">
<a class="navbar-item">
Discover
</a>
<a class="navbar-item">
Favorite
</a>
</div>
</div>
</div>
</nav>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-3">
<form id="search-job" action="#">
<div class="field">
<label class="label" >Job Description</label>
<div class="control has-icons-left">
<input class="input" name="description" type="text" placeholder="Filter by title, benefits, companies, experties">
<span class="icon is-small is-left"><i class="fas fa-clipboard"></i></span>
</div>
</div>
<div class="field">
<label class="label" >Location</label>
<div class="control has-icons-left">
<input class="input" name="location" type="text" placeholder="Fiter by city, state, zip code or country">
<span class="icon is-smal is-left"><i class="fas fa-globe"></i></span>
</div>
</div>
<div class="field">
<div class="control">
<label class="checkbox has-text-weight-semibold">
<input type="checkbox" name="full_time" value="full_time">
Full time only
</label>
</div>
</div>
<div class="field is-grouped is-grouped-right">
<div class="control">
<input type="submit" value="Search" class="button is-light has-text-weight-semibold"/>
</div>
</div>
</form>
</div>
<div class="column">
<table class="table is-fullwidth positionlist is-loading">
<tbody id="job-pannel">
<tr>
<td>
<h4><a href="https://jobs.github.com/positions/850281e8-4f0f-4952-88e4-ddf121e77188">Senior Python / C++ Developer (Electronics field)</a></h4>
<p class="source">
<a class="company" href="https://jobs.github.com/companies/gemeente-amsterdam">Gemeente Amsterdam</a>
–
<strong class="fulltime">Full Time</strong>
</p>
</td>
<td class="meta">
<span class="location">Amsterdam</span>
</td>
</tr>
</tbody>
</table>
<nav class="pagination" role="navigation" aria-label="pagination">
<a class="pagination-next m-0-auto" disabled>Next page</a>
</nav>
</div>
</div>
</div>
</section>
<script defer src="index.js"></script>
<!-- <script defer src="job.js"></script> -->
</body>
</html>