-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwork.html
122 lines (98 loc) · 4.32 KB
/
work.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
---
title: Working at Position
layout: default
---
<style>
ul { list-style-position: outside; margin-left: 2em; }
.outside { margin-left: 0; }
.salary { line-height: 3em; }
.office img { width: 100% }
</style>
<section>
<p>We're a software development company that serves leftist and
independent media companies. We're dedicated to building quality
software to help expand the breadth of discourse, culture, and thought
available to English-speaking audiences. We also look for
opportunities to grow our collective skill sets for unique and
creative projects.</p>
<p>We're equally dedicated providing a healthy working environment. We
believe that developers do their best work when they have plenty of
time off, and we encourage everyone to work about 30-35 hours per
week. We like what we do, but we recognize that it is work, not
<a href="https://www.jacobinmag.com/2014/01/in-the-name-of-love/">an act
of love</a>.</p>
</section>
<section>
<h3>We value</h3>
<ul>
<li>Moving thoughtfully and maintaining things</li>
<li>Diversity, inclusion, and social justice</li>
<li>Learning, teaching, and collaborating with each other</li>
</ul>
<p>You can learn more about our values on our <a href="https://www.keyvalues.com/position-development">Key Values</a> profile.</p>
</section>
<section>
<h3>Open roles</h3>
<h3>
<a name="web-designer">Web designer (project-based, remote)</a>
</h3>
<p>Position Dev is working with a client to build a site that will be a landing page and portal for participants in a
research study. We're looking to engage a designer who will carry out the design process from concept to handing off
wireframes ready for development.</p>
<p>We're looking for someone who:</p>
<ul>
<li>Can carry out visual design from collaborating with our client to understand their vision to delivering wireframes to
developers.</li>
<li>Can design a site that is visually compelling and is easy to use - it should meet study requirements, effectively
present a lot of information, be accessible, be responsive, and work well across browsers.</li>
<li>Has availability from now until the end of October 2021 for weekly meetings, which take place between 9a-5p ET.</li>
<li>Has excellent communication skills and prior experience collaborating with developers.</li>
<li>Can provide references from previous clients.</li>
</ul>
This is a temporary remote independent contractor role, with the possibility of future collaborations.
<p>Interested? Send us an email with a subject line that includes "Web designer" and a link to your portfolio at
<a href="mailto:[email protected]">[email protected]</a>.</p>
</section>
<section>
<h3>Sign up for job alerts</h3>
<p>If you're interested in being contacted when positions are available, feel free to leave us your e-mail!
We won't contact you for any other reason.</p>
<div class="job-alert-form">
<input class='text' id='email' name='email' type='email'><br>
<button class='contact-form' id='send' onclick='postToGoogleDrive()' value='Send'>Subscribe to a job alert</button>
<div id='success-msg'></div>
</div><!-- .job-alert-form -->
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58668184-1', 'auto');
ga('require', 'linkid', 'linkid.js');
ga('send', 'pageview');
function postToGoogleDrive() {
var email = $('#email').val();
var googleDrive = "https://docs.google.com/a/positiondev.com/forms/d/13ifo7eQloDa0BJCVRjUd1eOPEZcVHkvKcc31eiblH2M/formResponse";
$.ajax({
url: googleDrive,
data: {
"entry.1207210582": email
},
type: "POST",
dataType: "xml",
statusCode: {
0: function () {
$('#success-msg').html("Got it. We'll let you know when we're hiring!");
clear();
}
}
});
}
function clear() {
$('#email').val('');
}
</script>