forked from codeforboston/codeforboston.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjobs.html
36 lines (31 loc) · 1.01 KB
/
jobs.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
---
title: Civic Jobs
permalink: "/jobs/"
layout: page
type: hidden
---
<h1 class="t-section-headline">Jobs In Our Community</h1>
{% if site.data.jobs %}
<div class="job-controls row t-pad--top">
<input class="col-6 pull-right" type="text" name="filter-jobs" id="filter-jobs" placeholder="Start typing to filter by title, description, organization...">
</div>
<ul class="jobs" id="jobs-listing">
{% for job in site.data.jobs %}
<li class="job-listing">
<h3>{{ job.title }}</h3>
<div class="row">
<strong class="col-6"><a href="{{ job.org.link }}" target="_blank">{{ job.org.name }}</a></strong>
<p class="col-6 listing">
<a href="{{ job.org.link }}">view listing →</a>
</p>
</div>
<p> {{ job.description }} </p>
</li>
{% endfor %}
</ul>
<hr>
{% endif %}
<p class="notice notice-positive inline">
{% unless site.data.jobs %}No jobs currently listed. {% endunless %}
Looking to post a job? Let us know: <a href="mailto:[email protected]">[email protected]</a>!
</p>