diff --git a/src/routes.json b/src/routes.json index dfe53b432..9de27fc17 100644 --- a/src/routes.json +++ b/src/routes.json @@ -180,6 +180,13 @@ "view": "jobs/jobs", "title": "Jobs" }, + { + "name": "jobs-moderator", + "pattern": "^jobs/moderator/?$", + "routeAlias": "/jobs/moderator/?$", + "view": "jobs/moderator/moderator", + "title": "Community Moderator" + }, { "name": "privacypolicy", "pattern": "^/privacy_policy/?$", diff --git a/src/views/jobs/moderator/moderator.jsx b/src/views/jobs/moderator/moderator.jsx new file mode 100644 index 000000000..a90490e55 --- /dev/null +++ b/src/views/jobs/moderator/moderator.jsx @@ -0,0 +1,96 @@ +var React = require('react'); +var render = require('../../lib/render.jsx'); + +var Page = require('../../components/page/www/page.jsx'); +var InformationPage = require('../../components/informationpage/informationpage.jsx'); + +var Moderator = React.createClass({ + type: 'Moderator', + render: function () { + return ( + +
+

+ Interested in kids, creativity, and online communities? + We're seeking community moderators to work with the Scratch + Team. Moderators will support creative activities and + positive interactions on Scratch — a free online community + where young people program and share interactive stories, + games, and animations. Scratch has grown to more than 20 + million registered members (ages 8 and up), creating and + sharing thousands of projects each day. Moderators will + gain valuable experience working online with youth in a + creative, interest driven setting. +

+ Tweet +

Responsibilities:

+ +
+

Qualifications:

+ +
+

+ This position is part-time (10-12 hours per week) under contract. + All candidates must be at least 18 years old and have + authorization to work in the United States. +

+

MIT Media Lab, Cambridge, MA (or Remote)

+

+ Send a copy of your resume, links to one or more of your online + presences, and cover letter to{' '} + + jobs+moderator@scratch.mit.edu. +

+

+ + Really want the gig? Create an + awesome Scratch project to introduce yourself, share + it on the Scratch website, and send us a link. + +

+ Tweet +
+
+ ); + } +}); + +render(, document.getElementById('app'));