mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-26 17:16:11 -05:00
Merge pull request #411 from sayamindu/develop
Add view for community blocks interview recruitment
This commit is contained in:
commit
53e508dd24
6 changed files with 69 additions and 2 deletions
|
@ -7,8 +7,6 @@ var express = require('express');
|
|||
var path = require('path');
|
||||
var proxy = require('express-http-proxy');
|
||||
var url = require('url');
|
||||
var webpackDevMiddleware = require('webpack-dev-middleware');
|
||||
var webpack = require('webpack');
|
||||
|
||||
var handler = require('./handler');
|
||||
var log = require('./log');
|
||||
|
@ -72,6 +70,8 @@ if (typeof process.env.NODE_SENTRY_DSN === 'string') {
|
|||
|
||||
if (!isProduction) {
|
||||
// Use webpack-dev-server in development
|
||||
var webpackDevMiddleware = require('webpack-dev-middleware');
|
||||
var webpack = require('webpack');
|
||||
var compiler = webpack(require('../webpack.config.js'));
|
||||
app.use(webpackDevMiddleware(compiler, {
|
||||
headers: {
|
||||
|
|
|
@ -29,6 +29,11 @@
|
|||
"view": "cards",
|
||||
"title": "Cards"
|
||||
},
|
||||
{
|
||||
"pattern": "/info/communityblocks-interviews",
|
||||
"view": "communityblocks-interviews",
|
||||
"title": "Community Blocks Beta Tester Interviews"
|
||||
},
|
||||
{
|
||||
"pattern": "/jobs",
|
||||
"view": "jobs",
|
||||
|
|
|
@ -0,0 +1,62 @@
|
|||
var React = require('react');
|
||||
var render = require('../../lib/render.jsx');
|
||||
|
||||
var Page = require('../../components/page/page.jsx');
|
||||
|
||||
var CommunityBlocksInterviews = React.createClass({
|
||||
type: 'communityblocks-interviews',
|
||||
render: function () {
|
||||
return (
|
||||
<div className="inner">
|
||||
<h2>Community Blocks Beta Tester Interviews</h2>
|
||||
<br/>
|
||||
<p>
|
||||
Hello Scratchers!
|
||||
</p>
|
||||
<p>
|
||||
I am Sayamindu Dasgupta (<a href="/users/sdg1/" target="_blank">sdg1</a> on Scratch) and I am a member of
|
||||
the <a href="/info/credits" target="_blank">MIT Scratch Team</a>.
|
||||
</p>
|
||||
<p>
|
||||
One of our projects on the MIT Scratch Team is to understand how people use Scratch, the Scratch Community
|
||||
Blocks, and participate in the Scratch community. To do this, we are talking to Scratchers who have been
|
||||
particapting the Community Blocks beta testing program directly through interviews. In the interview, we
|
||||
would talk for an hour, asking about your Scratch experience (by phone or a service like Skype).
|
||||
</p>
|
||||
<p>
|
||||
Thank you for indicating in the beta invitation survey that you are willing to be interviewed.
|
||||
If you are still interested, please do the following steps:
|
||||
</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li><b>Complete the consent forms:</b> If you are under 18 years old, please download and complete these
|
||||
two forms (<a href="/pdfs/interviews/communityblocks/assent_form.pdf">one for you to sign</a>
|
||||
and <a href="/pdfs/interviews/communityblocks/consent_for_parent.pdf">another for your parent to sign</a>).
|
||||
If you are 18 years old and over, please complete
|
||||
<a href="/pdfs/interviews/communityblocks/consent_for_over_18.pdf">this form</a>.</li>
|
||||
|
||||
<li><b>Send the forms:</b> You can send me the forms in two ways: (1) by email
|
||||
(<a href="mailto:sayamindu@media.mit.edu" target="_blank">sayamindu@media.mit.edu</a>) by taking a picture
|
||||
or scanning the forms, or (2) send it through snail mail to Sayamindu Dasgupta, 77 Massachusetts Ave
|
||||
E14-464A, Cambridge, MA 02139</li>
|
||||
|
||||
<li><b>Schedule a time to talk:</b> Send me an email
|
||||
(<a href="mailto:sayamindu@media.mit.edu" target="_blank">sayamindu@media.mit.edu</a>) with a possible time
|
||||
where we can talk for about an hour.</li>
|
||||
|
||||
<li>If you have any questions, please do not hesitate to contact me by sending me an email
|
||||
at <a href="mailto:sayamindu@media.mit.edu">sayamindu@media.mit.edu</a>.</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Thank you and I look forward to speaking with you. Scratch on!
|
||||
</p>
|
||||
Sayamindu
|
||||
</div>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
render(<Page><CommunityBlocksInterviews /></Page>, document.getElementById('app'));
|
BIN
static/pdfs/interviews/communityblocks/assent_form.pdf
Normal file
BIN
static/pdfs/interviews/communityblocks/assent_form.pdf
Normal file
Binary file not shown.
BIN
static/pdfs/interviews/communityblocks/consent_for_over_18.pdf
Normal file
BIN
static/pdfs/interviews/communityblocks/consent_for_over_18.pdf
Normal file
Binary file not shown.
BIN
static/pdfs/interviews/communityblocks/consent_for_parent.pdf
Normal file
BIN
static/pdfs/interviews/communityblocks/consent_for_parent.pdf
Normal file
Binary file not shown.
Loading…
Reference in a new issue