mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 09:35:39 -05:00
Add CS1, CS2 to Resource Hub
Also adding additional worksheets/PDFs.
This commit is contained in:
parent
5d31496ceb
commit
52c1f3d625
5 changed files with 64 additions and 3 deletions
|
@ -578,7 +578,7 @@
|
|||
tip_good_idea: "The best way to have a good idea is to have a lot of ideas. - Linus Pauling"
|
||||
tip_programming_not_about_computers: "Computer Science is no more about computers than astronomy is about telescopes. - Edsger Dijkstra"
|
||||
tip_mulan: "Believe you can, then you will. - Mulan"
|
||||
|
||||
|
||||
play_game_dev_level:
|
||||
created_by: "Created by {{name}}"
|
||||
how_to_play_title: "How to play:"
|
||||
|
@ -1515,11 +1515,21 @@
|
|||
student_getting_started: "Student Quick Start Guide"
|
||||
student_getting_started_desc: "You can distribute this guide to your students before starting CodeCombat so that they can familiarize themselves with the code editor. This guide can be used for both Python and JavaScript classrooms."
|
||||
cs1: "Introduction to Computer Science"
|
||||
cs2: "Computer Science 2"
|
||||
cs1_syntax_python: "Course 1 Python Syntax Guide"
|
||||
cs1_syntax_python_desc: "Cheatsheet with references to common Python syntax that students will learn in Introduction to Computer Science."
|
||||
cs1_syntax_javascript: "Course 1 JavaScript Syntax Guide"
|
||||
cs1_syntax_javascript_desc: "Cheatsheet with references to common JavaScript syntax that students will learn in Introduction to Computer Science."
|
||||
coming_soon: "Additional guides coming soon!"
|
||||
engineering_cycle_worksheet: "Engineering Cycle Worksheet"
|
||||
engineering_cycle_worksheet_desc: "Use this worksheet to teach students the basics of the engineering cycle: Assess, Design, Implement and Debug. Refer to the completed example worksheet as a guide."
|
||||
engineering_cycle_worksheet_link: "View example"
|
||||
progress_journal: "Progress Journal"
|
||||
progress_journal_desc: "Encourage students to keep track of their progress via a progress journal."
|
||||
cs1_curriculum: "Introduction to Computer Science - Curriculum Guide"
|
||||
cs1_curriculum_desc: "Scope and sequence, lesson plans, activities and more for Course 1."
|
||||
cs2_curriculum: "Computer Science 2 - Curriculum Guide"
|
||||
cs2_curriculum_desc: "Scope and sequence, lesson plans, activities and more for Course 2."
|
||||
|
||||
sharing:
|
||||
game: "Game"
|
||||
|
|
|
@ -1,4 +1,16 @@
|
|||
#resource-hub-view
|
||||
.content
|
||||
max-width: 900px
|
||||
margin: auto
|
||||
|
||||
h4
|
||||
padding: 0 0 10px 0
|
||||
|
||||
ul
|
||||
margin: 0 0 40px 0
|
||||
p
|
||||
font-size: .8em
|
||||
|
||||
.comingsoon
|
||||
h4
|
||||
text-align: center
|
||||
|
|
|
@ -6,10 +6,14 @@
|
|||
.print, .print p
|
||||
text-align: center
|
||||
font-size: .75em
|
||||
text-transform: uppercase
|
||||
// text-transform: uppercase
|
||||
@media print
|
||||
display: none
|
||||
|
||||
.print a
|
||||
color: #fff
|
||||
text-decoration: none
|
||||
|
||||
.lesson-plans
|
||||
max-width: 900px
|
||||
background-color: #f8f8f8
|
||||
|
@ -23,6 +27,7 @@
|
|||
border: none
|
||||
margin: none
|
||||
padding: none
|
||||
font-size: 80%
|
||||
|
||||
ul
|
||||
margin: 0 0 30px 0
|
||||
|
@ -67,6 +72,14 @@
|
|||
@media print
|
||||
page-break-before: always
|
||||
|
||||
h6
|
||||
font-style: italic
|
||||
font-weight: 200
|
||||
text-align: right
|
||||
|
||||
img
|
||||
width: 100%
|
||||
|
||||
table, tr, td, th
|
||||
border: 2px solid #f8f8f8
|
||||
border-radius: 5px
|
||||
|
|
|
@ -8,13 +8,14 @@ block content
|
|||
.container
|
||||
span.backlink
|
||||
a(href='/teachers/resources')
|
||||
|< Back to Resource Hub
|
||||
|< Back to Resource Hub
|
||||
if view.content == ''
|
||||
.comingsoon
|
||||
h4(style="text-align:center")
|
||||
i This guide doesn't exist!
|
||||
else
|
||||
.print
|
||||
.btn.btn-md.btn-navy
|
||||
a(href='javascript:window.print()')
|
||||
span.glyphicon.glyphicon-print  
|
||||
|Print this guide
|
||||
|
|
|
@ -23,10 +23,20 @@ block content
|
|||
span(data-i18n="teacher.student_getting_started")
|
||||
span.spl [PDF]
|
||||
p(data-i18n="teacher.student_getting_started_desc")
|
||||
li
|
||||
a(href="http://files.codecombat.com/docs/resources/ProgressJournal.pdf" target="blank")
|
||||
span(data-i18n="teacher.progress_journal")
|
||||
span.spl [PDF]
|
||||
p(data-i18n="teacher.progress_journal_desc")
|
||||
|
||||
|
||||
h4(data-i18n="teacher.cs1")
|
||||
ul
|
||||
|
||||
li
|
||||
a(href="/teachers/resources/cs1" target="blank")
|
||||
span(data-i18n="teacher.cs1_curriculum")
|
||||
p(data-i18n="teacher.cs1_curriculum_desc")
|
||||
li
|
||||
a(href="http://files.codecombat.com/docs/resources/Course1PythonSyntaxGuide.pdf" target="blank")
|
||||
span(data-i18n="teacher.cs1_syntax_python")
|
||||
|
@ -37,6 +47,21 @@ block content
|
|||
span(data-i18n="teacher.cs1_syntax_javascript")
|
||||
span.spl [PDF]
|
||||
p(data-i18n="teacher.cs1_syntax_javascript_desc")
|
||||
li
|
||||
a(href="http://files.codecombat.com/docs/resources/EngineeringCycleWorksheet.pdf" target="blank")
|
||||
span(data-i18n="teacher.engineering_cycle_worksheet")
|
||||
span.spl [PDF]
|
||||
a(href="http://files.codecombat.com/docs/resources/WorksheetExample.pdf" target="blank")
|
||||
i.span.spl(data-i18n="teacher.engineering_cycle_worksheet_link")
|
||||
p(data-i18n="teacher.engineering_cycle_worksheet_desc")
|
||||
|
||||
h4(data-i18n="teacher.cs2")
|
||||
ul
|
||||
li
|
||||
a(href="/teachers/resources/cs2" target="blank")
|
||||
span(data-i18n="teacher.cs2_curriculum")
|
||||
p(data-i18n="teacher.cs2_curriculum_desc")
|
||||
|
||||
|
||||
.comingsoon
|
||||
h4
|
||||
|
|
Loading…
Reference in a new issue