forked from opensourcedesign/jobs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (69 loc) · 2.55 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
---
layout: default
title: Jobs
---
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1">
<h1>Jobs</h1>
</div>
</div>
<div class="row">
<div class="col-md-5">
<p>
Need a logo designed, a usability study, or an interface-facelift?
Our diverse community and extended network have got you covered.
<p>
</div>
<div class="col-md-5">
<p>
<a class="btn btn-primary" href="/jobs/job-form/">Post A Job</a>
We'll review your posting as soon as we can! Free and paid gigs welcome.
</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<ul class="job-list">
{% for page in site.pages reversed %}
{% if page.layout == 'jobs' and page.status == 'searching' %}
{% unless page.title contains 'Job Title' %}{% comment %} Filter out the example page {% endcomment %}
<li>
<h2>
<a class="page-link" href="{{ page.url | prepend: site.baseurl }}" title="{{ page.title }}">
{{ page.title }}
</a>
</h2>
<p>
{% if page.role %}
<span class="pill role">{{ page.role }}</span> @
{% endif %}
<span class="pill organization">{{ page.organization }}</span>
</p>
{% if page.compensation == "gratis" %}
<span class="pill compensation gratis">
❤ {{ page.compensation }}
{% else %}
<span class="pill compensation paid">
$ {{ page.compensation }}
{% endif %}
</span>
</li>
{% endunless %}
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<ul>
<li>More comfortable with Git? Use our <a href="https://github.com/opensourcedesign/jobs">git based method</a>.</li>
<li>Subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></li>
<li>Checkout other places like: <a href="https://www.fossjobs.net" target="_blank">FOSS Jobs</a></li>
</ul>
</div>
</div>
</div>