mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 15:17:53 -05:00
Merge pull request #3545 from apple502j/goodbye-jobs-page
Goodbye jobs page
This commit is contained in:
commit
7129cb2054
8 changed files with 8 additions and 220 deletions
|
@ -22,7 +22,7 @@ const Footer = props => (
|
|||
</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="/jobs">
|
||||
<a href="https://www.scratchfoundation.org/opportunities">
|
||||
<FormattedMessage id="general.jobs" />
|
||||
</a>
|
||||
</dd>
|
||||
|
@ -83,7 +83,7 @@ const Footer = props => (
|
|||
</a>
|
||||
</dd>
|
||||
<dd>
|
||||
<a href="/jobs">
|
||||
<a href="https://www.scratchfoundation.org/opportunities">
|
||||
<FormattedMessage id="general.jobs" />
|
||||
</a>
|
||||
</dd>
|
||||
|
|
|
@ -148,18 +148,9 @@
|
|||
"title": "Ideas"
|
||||
},
|
||||
{
|
||||
"name": "jobs",
|
||||
"pattern": "^/jobs/?$",
|
||||
"routeAlias": "/jobs(/moderator)?/?$",
|
||||
"view": "jobs/jobs",
|
||||
"title": "Jobs"
|
||||
},
|
||||
{
|
||||
"name": "jobs-moderator",
|
||||
"pattern": "^/jobs/moderator/?$",
|
||||
"routeAlias": "/jobs(/moderator)?/?$",
|
||||
"view": "jobs/moderator/moderator",
|
||||
"title": "Community Moderator"
|
||||
"name": "jobs-redirect",
|
||||
"pattern": "^/jobs/?(\\?.*)?$",
|
||||
"redirect": "https://www.scratchfoundation.org/opportunities/"
|
||||
},
|
||||
{
|
||||
"name": "join",
|
||||
|
|
|
@ -228,7 +228,7 @@ const Developers = () => (
|
|||
id="developers.joinBody"
|
||||
values={{
|
||||
jobsPageLink: (
|
||||
<a href="/jobs">
|
||||
<a href="https://www.scratchfoundation.org/opportunities">
|
||||
<FormattedMessage id="developers.joinBodyJobsLinkText" />
|
||||
</a>
|
||||
),
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
const React = require('react');
|
||||
const render = require('../../lib/render.jsx');
|
||||
const FormattedMessage = require('react-intl').FormattedMessage;
|
||||
|
||||
const Page = require('../../components/page/www/page.jsx');
|
||||
|
||||
require('./jobs.scss');
|
||||
|
||||
const Jobs = () => (
|
||||
<div className="jobs">
|
||||
<div className="top">
|
||||
<div className="inner">
|
||||
<img src="/images/jobs.png" />
|
||||
<h2><FormattedMessage id="jobs.titleQuestion" /></h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="middle">
|
||||
<div className="inner">
|
||||
<h3><FormattedMessage id="jobs.joinScratchTeam" /></h3>
|
||||
<p><FormattedMessage id="jobs.info" /></p>
|
||||
<p><FormattedMessage id="jobs.workEnvironment" /></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bottom">
|
||||
<div className="inner">
|
||||
<h3><FormattedMessage id="jobs.openings" /></h3>
|
||||
{/* <FormattedMessage id="jobs.nojobs" /> */}
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://scratch.mit.edu/jobs/moderator">
|
||||
Community Moderator
|
||||
</a>
|
||||
<span>
|
||||
Remote
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
|
||||
render(<Page><Jobs /></Page>, document.getElementById('app'));
|
|
@ -1,42 +0,0 @@
|
|||
@import "../../colors";
|
||||
|
||||
.jobs {
|
||||
.top {
|
||||
img {
|
||||
margin-bottom: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.middle {
|
||||
margin: 20px 0;
|
||||
background-color: $ui-gray;
|
||||
padding: 40px 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.bottom {
|
||||
width: 100%;
|
||||
line-height: 200%;
|
||||
|
||||
.thin-heading {
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
p {
|
||||
margin: auto;
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 0;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
span {
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"jobs.info": "With Scratch, young people from all backgrounds are learning to program their own interactive stories, games, and animations. Children and teens from around the world have created and shared more than 10 million projects in the rapidly-growing Scratch online community.",
|
||||
"jobs.joinScratchTeam": "Join the Scratch Team!",
|
||||
"jobs.openings": "Current Job Openings",
|
||||
"jobs.titleQuestion": "Want to work on an innovative project that is transforming the ways young people create, share, and learn?",
|
||||
"jobs.workEnvironment":"We’re seeking curious and motivated people to join our Scratch Team at the MIT Media Lab. We're a diverse group of educators, designers, and engineers, who work together in a playful, creative environment full of LEGO bricks, craft materials, and maker tools. We strongly value diversity, collaboration, and respect in the workplace.",
|
||||
"jobs.nojobs":"We don't have any open positions at this time. Please check back soon for opportunities!"
|
||||
}
|
|
@ -1,108 +0,0 @@
|
|||
const React = require('react');
|
||||
|
||||
const Page = require('../../../components/page/www/page.jsx');
|
||||
const render = require('../../../lib/render.jsx');
|
||||
|
||||
const InformationPage = require('../../../components/informationpage/informationpage.jsx');
|
||||
|
||||
const Moderator = () => (
|
||||
<InformationPage title={'Community Moderator'}>
|
||||
<div className="inner info-inner">
|
||||
<p>
|
||||
Interested in online communities, internet culture, and
|
||||
working with kids? We're seeking community moderators
|
||||
to work with the <a href="/">Scratch</a> Team. Scratch
|
||||
Moderators help keep Scratch a safe, trusted, and friendly
|
||||
environment.
|
||||
</p>
|
||||
<p>
|
||||
Scratch is a free service where young people learn to
|
||||
program by creating interactive stories, games, and
|
||||
animations which they can share to an online community.
|
||||
Scratch has grown to more than 30 million registered
|
||||
members (ages 8 and up) who create and share thousands
|
||||
of projects each day. Moderators will gain valuable
|
||||
experience working online with youth in a creative,
|
||||
interest-driven setting.
|
||||
</p>
|
||||
<h3>Responsibilities:</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Promote the values and core ideas of the Scratch
|
||||
project (such as inclusiveness, creative collaboration,
|
||||
and constructive feedback)
|
||||
</li>
|
||||
<li>
|
||||
Review reported users, projects, studios, and comments
|
||||
for appropriateness on the Scratch website
|
||||
</li>
|
||||
<li>
|
||||
Work with young people to help them understand what they
|
||||
did that breaks our <a href="/community_guidelines">Community Guidelines</a>
|
||||
</li>
|
||||
<li>
|
||||
Determine when a person is or isn’t likely to be able to
|
||||
participate constructively in the Scratch online community
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<h3>Qualifications:</h3>
|
||||
<ul>
|
||||
<li>
|
||||
Active participation in online communities, forums,
|
||||
or social media
|
||||
</li>
|
||||
<li>
|
||||
Excellent writing and communication skills
|
||||
</li>
|
||||
<li>
|
||||
Comfortable learning to use new software and websites
|
||||
</li>
|
||||
<li>
|
||||
Strong online research skills
|
||||
</li>
|
||||
<li>
|
||||
Good judgement and ability to consider issues from
|
||||
multiple perspectives
|
||||
</li>
|
||||
<li>
|
||||
Able to work well independently, manage your time
|
||||
well, and stay focused while working remotely
|
||||
</li>
|
||||
<li>
|
||||
Able to work well as part of a team and participate
|
||||
in group discussions
|
||||
</li>
|
||||
<li>
|
||||
Not required, but would be nice: ability to read and
|
||||
write in multiple languages (especially if one of those
|
||||
languages is Japanese, Korean, or Russian!)
|
||||
</li>
|
||||
</ul>
|
||||
<br />
|
||||
<p>
|
||||
This position is part-time (10-15 hours per week),
|
||||
flexible hours (this work can be done 24/7 and we
|
||||
set a schedule which fits in with your life),
|
||||
under contract with starting pay of $12 per hour.
|
||||
All candidates must be at least 18 years old and
|
||||
have authorization to work in the United States.
|
||||
</p>
|
||||
<p><b>(MIT Media Lab, Cambridge, MA or Remote)</b></p>
|
||||
<p>
|
||||
Send a copy of your resume, links to one or more of your online
|
||||
presences, and cover letter to{' '}
|
||||
<a href="mailto:jobs+moderator@scratch.mit.edu">jobs+moderator@scratch.mit.edu</a>.
|
||||
</p>
|
||||
<p>
|
||||
<i>
|
||||
Really want the gig? <a href="/create">Create</a> an
|
||||
awesome Scratch project to introduce yourself, share
|
||||
it on the Scratch website, and send us a link.
|
||||
</i>
|
||||
</p>
|
||||
</div>
|
||||
</InformationPage>
|
||||
);
|
||||
|
||||
render(<Page><Moderator /></Page>, document.getElementById('app'));
|
|
@ -101,9 +101,9 @@ tap.test('clickCreditsLink', options, t => {
|
|||
// JOBS
|
||||
tap.test('clickJobsLink', options, t => {
|
||||
const linkText = 'Jobs';
|
||||
const expectedHref = '/jobs';
|
||||
const expectedUrl = 'https://www.scratchfoundation.org/opportunities/';
|
||||
clickFooterLinks(linkText).then(url => {
|
||||
t.equal(url.substr(-expectedHref.length), expectedHref);
|
||||
t.equal(url, expectedUrl);
|
||||
t.end();
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue