mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-03-01 07:45:36 -05:00
more links
This commit is contained in:
parent
4716cb3b32
commit
0a39123a3b
3 changed files with 32 additions and 7 deletions
|
@ -18,8 +18,10 @@
|
||||||
"teacherlanding.ideasResources" : "Visit the {ideasPageLink} for additional resources from the Scratch Team",
|
"teacherlanding.ideasResources" : "Visit the {ideasPageLink} for additional resources from the Scratch Team",
|
||||||
"teacherlanding.ideasLink" : "Ideas Page",
|
"teacherlanding.ideasLink" : "Ideas Page",
|
||||||
"teacherlanding.connectingWithEducators" : "Connect with Other Educators",
|
"teacherlanding.connectingWithEducators" : "Connect with Other Educators",
|
||||||
"teacherlanding.teachingWithScratch" : "Join the Teaching with Scratch Facebook group to share ideas, questions, and resources related to teaching with Scratch.",
|
"teacherlanding.teachingWithScratch" : "Join the {teachingWithScratchLink} Facebook group to share ideas, questions, and resources related to teaching with Scratch.",
|
||||||
"teacherlanding.attendMeetups" : "Attend ScratchEd Educator Meetups to share ideas and strategies with other educators for supporting computational creativity in all its forms.",
|
"teacherlanding.teachingWithScratchLink" : "Teaching with Scratch",
|
||||||
|
"teacherlanding.attendMeetups" : "Attend {meetupLink} to share ideas and strategies with other educators for supporting computational creativity in all its forms.",
|
||||||
|
"teacherlanding.meetupLink" : "ScratchEd Educator Meetups",
|
||||||
"teacherlanding.moreGetStarted" : "More Ways to Get Started",
|
"teacherlanding.moreGetStarted" : "More Ways to Get Started",
|
||||||
"teacherlanding.csFirst" : "Google’s free curriculum, CS First, has been used by students and educators worldwide. Over 1,000 instructional videos and lesson plans introduce students to Scratch.",
|
"teacherlanding.csFirst" : "Google’s free curriculum, CS First, has been used by students and educators worldwide. Over 1,000 instructional videos and lesson plans introduce students to Scratch.",
|
||||||
"teacherlanding.codeClub" : "Visit Code Club to access more than 30 free project modules to engage students in learning to make interactive stories, games, and animations.",
|
"teacherlanding.codeClub" : "Visit Code Club to access more than 30 free project modules to engage students in learning to make interactive stories, games, and animations.",
|
||||||
|
|
|
@ -22,11 +22,16 @@ const Landing = () => (
|
||||||
<p className="title-banner-p intro">
|
<p className="title-banner-p intro">
|
||||||
<FormattedMessage id="teacherlanding.intro" />
|
<FormattedMessage id="teacherlanding.intro" />
|
||||||
</p>
|
</p>
|
||||||
<div className="ted-talk">
|
<div className="video-player">
|
||||||
<iframe
|
<iframe
|
||||||
allowFullScreen
|
allowFullScreen
|
||||||
|
allowTransparency="true"
|
||||||
frameBorder="0"
|
frameBorder="0"
|
||||||
src="https://scratch.wistia.com/medias/h8hay3nnt4"
|
height="180"
|
||||||
|
scrolling="no"
|
||||||
|
src={`https://fast.wistia.net/embed/iframe/h8hay3nnt4?seo=false&videoFoam=true`}
|
||||||
|
title=""
|
||||||
|
width="320"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
|
@ -164,12 +169,30 @@ const Landing = () => (
|
||||||
<FlexRow className="educator-community">
|
<FlexRow className="educator-community">
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
<FormattedHTMLMessage id="teacherlanding.teachingWithScratch" />
|
<FormattedMessage
|
||||||
|
id="teacherlanding.teachingWithScratch"
|
||||||
|
values={{
|
||||||
|
teachingWithScratchLink: (
|
||||||
|
<a href="https://www.facebook.com/groups/TeachingwithScratch/">
|
||||||
|
<FormattedMessage id="teacherlanding.teachingWithScratchLink" />
|
||||||
|
</a>
|
||||||
|
)
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
<FormattedHTMLMessage id="teacherlanding.attendMeetups" />
|
<FormattedMessage
|
||||||
|
id="teacherlanding.attendMeetups"
|
||||||
|
values={{
|
||||||
|
meetupLink: (
|
||||||
|
<a href="https://www.meetup.com/pro/scratched/">
|
||||||
|
<FormattedMessage id="teacherlanding.meetupLink" />
|
||||||
|
</a>
|
||||||
|
)
|
||||||
|
}}
|
||||||
|
/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
|
|
|
@ -50,7 +50,7 @@ $story-width: $cols3;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.ted-talk {
|
.video-player {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-bottom: $gutter;
|
margin-bottom: $gutter;
|
||||||
border: 2px solid $ui-border;
|
border: 2px solid $ui-border;
|
||||||
|
|
Loading…
Reference in a new issue