mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
Updated i18n, added /employers.
This commit is contained in:
parent
37f1ccdb51
commit
4a702176a6
8 changed files with 104 additions and 48 deletions
app
locale
styles
templates
views
|
@ -26,6 +26,7 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr
|
|||
about: "About"
|
||||
contact: "Contact"
|
||||
twitter_follow: "Follow"
|
||||
employers: "Employers"
|
||||
|
||||
forms:
|
||||
name: "Name"
|
||||
|
@ -192,7 +193,18 @@ module.exports = nativeDescription: "English", englishDescription: "English", tr
|
|||
lg_title: "Latest Games"
|
||||
|
||||
editor:
|
||||
main_title: "CodeCombat Editors"
|
||||
main_description: "Build your own levels, campaigns, units and educational content. We provide all the tools you need!"
|
||||
article_title: "Article Editor"
|
||||
article_description: "Write articles that give players overviews of programming concepts which can be used across a variety of levels and campaigns."
|
||||
thang_title: "Thang Editor"
|
||||
thang_description: "Build units, defining their default logic, graphics and audio. Currently only supports importing Flash exported vector graphics."
|
||||
level_title: "Level Editor"
|
||||
level_description: "Includes the tools for scripting, uploading audio, and constructing custom logic to create all sorts of levels. Everything we use ourselves!"
|
||||
security_notice: "Many major features in these editors are not currently enabled by default. As we improve the security of these systems, they will be made generally available. If you'd like to use these features sooner, "
|
||||
contact_us: "contact us!"
|
||||
hipchat_prefix: "You can also find us in our"
|
||||
hipchat_url: "HipChat room."
|
||||
level_btn_save: "Save"
|
||||
level_btn_fork: "Fork"
|
||||
level_btn_play: "Play"
|
||||
|
|
|
@ -99,6 +99,7 @@ h1 h2 h3 h4
|
|||
letter-spacing: 1px
|
||||
color: #ffffff
|
||||
cursor: pointer
|
||||
margin: 0px 10px
|
||||
|
||||
a[data-toggle="modal"]
|
||||
cursor: pointer
|
||||
|
|
|
@ -78,34 +78,37 @@
|
|||
@include box-shadow(0px 5px 25px rgba(79, 79, 213, 0.6))
|
||||
background: #add8e6
|
||||
|
||||
#canvas-wrapper
|
||||
width: 100%
|
||||
.world-container
|
||||
position: relative
|
||||
|
||||
// Below snatched from play/level.sass; should refactor?
|
||||
|
||||
canvas#surface
|
||||
background-color: #ddd
|
||||
width: 100%
|
||||
display: block
|
||||
z-index: 1
|
||||
|
||||
$GI: 0.5 // gradient intensity; can tweak this 0-1
|
||||
|
||||
.gradient
|
||||
position: absolute
|
||||
z-index: 10
|
||||
|
||||
#canvas-left-gradient
|
||||
left: 0px
|
||||
width: 5px
|
||||
background: linear-gradient(to left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8*$GI) 100%)
|
||||
bottom: 0
|
||||
top: 0
|
||||
|
||||
#canvas-top-gradient
|
||||
top: 0
|
||||
height: 5px
|
||||
left: 0
|
||||
right: 0
|
||||
background: linear-gradient(to top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8*$GI) 100%)
|
||||
#canvas-wrapper
|
||||
width: 100%
|
||||
position: relative
|
||||
|
||||
// Below snatched from play/level.sass; should refactor?
|
||||
|
||||
canvas#surface
|
||||
background-color: #ddd
|
||||
width: 100%
|
||||
display: block
|
||||
z-index: 1
|
||||
|
||||
$GI: 0.5 // gradient intensity; can tweak this 0-1
|
||||
|
||||
.gradient
|
||||
position: absolute
|
||||
z-index: 10
|
||||
|
||||
#canvas-left-gradient
|
||||
left: 0px
|
||||
width: 5px
|
||||
background: linear-gradient(to left, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8*$GI) 100%)
|
||||
bottom: 0
|
||||
top: 0
|
||||
|
||||
#canvas-top-gradient
|
||||
top: 0
|
||||
height: 5px
|
||||
left: 0
|
||||
right: 0
|
||||
background: linear-gradient(to top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.8*$GI) 100%)
|
||||
|
|
|
@ -42,18 +42,16 @@ body
|
|||
block footer
|
||||
.footer
|
||||
.content
|
||||
p(class='footer-link-text')
|
||||
a(href='/', title='Home', tabindex=-1, data-i18n="nav.home") Home
|
||||
| |
|
||||
p.footer-link-text
|
||||
if pathname == "/"
|
||||
a(href='/employers', title='Home', tabindex=-1, data-i18n="nav.employers") Employers
|
||||
else
|
||||
a(href='/', title='Home', tabindex=-1, data-i18n="nav.home") Home
|
||||
a(href='/contribute', title='Contribute', tabindex=-1, data-i18n="nav.contribute") Contribute
|
||||
| |
|
||||
a(href='/legal', title='Legal', tabindex=-1, data-i18n="nav.legal") Legal
|
||||
| |
|
||||
a(href='/about', title='About', tabindex=-1, data-i18n="nav.about") About
|
||||
| |
|
||||
a(title='Contact', tabindex=-1, data-toggle="coco-modal", data-target="modal/contact", data-i18n="nav.contact") Contact
|
||||
|
||||
|
||||
.share-buttons
|
||||
.g-plusone(data-href="http://codecombat.com", data-size="medium")
|
||||
.fb-like(data-href="https://www.facebook.com/codecombat", data-send="false", data-layout="button_count", data-width="350", data-show-faces="true", data-ref="coco_footer_#{fbRef}")
|
||||
|
|
|
@ -2,30 +2,30 @@ extends /templates/base
|
|||
|
||||
block content
|
||||
|
||||
h2(data-i18n="editor.title") CodeCombat Editors
|
||||
h2(data-i18n="editor.main_title") CodeCombat Editors
|
||||
|
||||
p
|
||||
p(data=i18n="editor.main_description")
|
||||
| Build your own levels, campaigns, units and educational content.
|
||||
| We provide all the tools you need!
|
||||
|
||||
div.editor-column
|
||||
h3
|
||||
a(href='/editor/level') Level Editor
|
||||
div.description
|
||||
a(href='/editor/level', data-i18n="editor.level_title") Level Editor
|
||||
div.description(data-i18n="editor.level_description")
|
||||
| Includes the tools for scripting, uploading audio, and constructing custom logic
|
||||
| to create all sorts of levels. Everything we use ourselves!
|
||||
|
||||
div.editor-column
|
||||
h3
|
||||
a(href='/editor/thang') Thang Editor
|
||||
div.description
|
||||
a(href='/editor/thang', data-i18n="editor.thang_title") Thang Editor
|
||||
div.description(data-i18n="editor.thang_description")
|
||||
| Build units, defining their default logic, graphics and audio.
|
||||
| Currently only supports importing Flash exported vector graphics.
|
||||
|
||||
div.editor-column
|
||||
h3
|
||||
a(href='/editor/article') Article Editor
|
||||
div.description
|
||||
a(href='/editor/article', data-i18n="editor.article_title") Article Editor
|
||||
div.description(data-i18n="editor.article_description")
|
||||
| Write articles that give players overviews of programming concepts which can be
|
||||
| used across a variety of levels and campaigns.
|
||||
|
||||
|
@ -34,11 +34,13 @@ block content
|
|||
hr
|
||||
|
||||
p
|
||||
span
|
||||
span(data-i18n="editor.security_notice")
|
||||
| Many major features in these editors are not currently enabled by default.
|
||||
| As we improve the security of these systems, they will be made generally available.
|
||||
| If you'd like to use these features sooner,
|
||||
a(title='Contact', tabindex=-1, data-toggle="coco-modal", data-target="modal/contact", data-i18n="editor.contact_us") email us!
|
||||
span You can also find us in our
|
||||
|
|
||||
span(data-i18n="editor.hipchat_prefix") You can also find us in our
|
||||
|
|
||||
strong
|
||||
a(href="http://www.hipchat.com/g3plnOKqa") HipChat room.
|
||||
a(href="http://www.hipchat.com/g3plnOKqa", data-i18n="editor.hipchat_url") HipChat room.
|
|
@ -3,7 +3,7 @@
|
|||
#thangs-treema(title="Double click to configure a thang")
|
||||
|
||||
.world-container.thangs-column
|
||||
h3(data-i18n="editor.level_tab_thangs_conditions") World Starting Conditions
|
||||
h3(data-i18n="editor.level_tab_thangs_conditions") Starting Conditions
|
||||
#canvas-wrapper
|
||||
canvas(width=924, height=589)#surface
|
||||
#canvas-left-gradient.gradient
|
||||
|
|
34
app/templates/employers.jade
Normal file
34
app/templates/employers.jade
Normal file
|
@ -0,0 +1,34 @@
|
|||
extends /templates/base
|
||||
|
||||
block content
|
||||
|
||||
.row
|
||||
|
||||
.span5
|
||||
|
||||
h2 CodeCombat for Employers
|
||||
|
||||
p.lead Want to hire expert CodeCombat players?
|
||||
|
||||
p
|
||||
| CodeCombat doesn't just have beginners. We also have expert software developers who play our
|
||||
a(href="http://blog.codecombat.com/beat-this-level-get-a-programming-job") developer challenge levels
|
||||
| . If your company is seeking technical talent, then we'd be happy to help place candidates with you.
|
||||
|
||||
p We were actually overwhelmed by how many talented developers rushed to site, crushed our version of the algorithm in the Gridmancer challenge, and were looking for job opportunities, especially in the SF Bay Area where CodeCombat is located. So if you're an employer, now's a great time to get in touch and meet some amazing programmers.
|
||||
|
||||
p If this sounds interesting, then let's get in touch, find out what you're looking for, talk about recruitment terms, and see what we can do for you. Don't worry–we are not your traditional recruiter. We're a tech company like you who happens to have a ton of great programmers looking to us for help with the job search.
|
||||
|
||||
h3
|
||||
a(title='Contact', tabindex=-1, data-toggle="coco-modal", data-target="modal/contact") Contact Us
|
||||
|
||||
.span5
|
||||
|
||||
h2 Candidate Statistics
|
||||
|
||||
h4 Resumes: 46
|
||||
h4 Ages: 16 - 45
|
||||
h4 Experience: 0 - 30 years
|
||||
h4 Skill: from interns and entry level to senior developers and management
|
||||
h4 Technologies: just about everything
|
||||
h4 Countries: USA, Canada, Australia, and many more
|
6
app/views/employers_view.coffee
Normal file
6
app/views/employers_view.coffee
Normal file
|
@ -0,0 +1,6 @@
|
|||
View = require 'views/kinds/RootView'
|
||||
template = require 'templates/employers'
|
||||
|
||||
module.exports = class EmployersView extends View
|
||||
id: "employers-view"
|
||||
template: template
|
Loading…
Add table
Reference in a new issue