-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcareers.html
More file actions
43 lines (39 loc) · 1.03 KB
/
careers.html
File metadata and controls
43 lines (39 loc) · 1.03 KB
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
---
layout: page
title: Careers
icon: code
permalink: /careers/
order: 4
---
<div class="ui text container">
<div class="ui hidden divider"></div>
<h1 class="ui header">
Careers at Liberis Labs
</h1>
<form class="ui form">
<div class="field">
<label>Job Type</label>
<select id="job-types" class="ui dropdown">
<option value="">All</option>
{% assign types = site.jobs | group_by: 'type' | map: 'name' %}
{% for type in types %}
<option value="{{type}}">{{type}}</option>
{% endfor %}
</select>
</div>
</form>
<div class="ui divider"></div>
<div class="ui basic segment">
<div class="ui relaxed divided list">
{% for job in site.jobs %}
<div class="item" data-job-type="{{job.type}}">
<i class="large {{job.job_icon}} middle aligned icon"></i>
<div class="content">
<a class="header" href="{{job.url | prepend: site.baseurl }}">{{job.job_title}}</a>
<div class="description">{{job.location}}</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>