This repository was archived by the owner on Jul 20, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 133
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (79 loc) · 3.23 KB
/
Copy pathindex.html
File metadata and controls
80 lines (79 loc) · 3.23 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
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
---
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.
<a href="https://opensourcedesign.net/2024/05/09/oss-projects-here-is-how-to-make-a-successful-job-post.html"> View a guide to writing a job for job posters.</a>
<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>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<div class="alert alert-info">
<strong>Important:</strong> When responding to job postings, please avoid generic copy-pasted responses.
See our <a href="https://discourse.opensourcedesign.net/t/guidelines-on-posting-and-responding-to-jobs/3416" target="_blank">guidelines for responding to jobs</a>
to avoid being banned from the community.
</div>
</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>