mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
adding a top info arena on top of the employers page
This commit is contained in:
parent
8ab69cf833
commit
fb7b3f8580
7 changed files with 73 additions and 6 deletions
BIN
app/assets/images/pages/employer/employer_icon1.png
Normal file
BIN
app/assets/images/pages/employer/employer_icon1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
BIN
app/assets/images/pages/employer/employer_icon2.png
Normal file
BIN
app/assets/images/pages/employer/employer_icon2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
BIN
app/assets/images/pages/employer/employer_icon3.png
Normal file
BIN
app/assets/images/pages/employer/employer_icon3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
BIN
app/assets/images/pages/employer/employer_icon4.png
Normal file
BIN
app/assets/images/pages/employer/employer_icon4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
|
@ -297,7 +297,7 @@
|
|||
player_code: "Player Code"
|
||||
|
||||
employers:
|
||||
want_to_hire_our_players: "Want to hire expert CodeCombat players?"
|
||||
want_to_hire_our_players: "Hire CodeCombat Players"
|
||||
see_candidates: "Click here to see our candidates"
|
||||
candidates_count_prefix: "We currently have "
|
||||
candidates_count_many: "many"
|
||||
|
|
|
@ -1,10 +1,32 @@
|
|||
#employers-view
|
||||
|
||||
h1, h2, h3
|
||||
font: Arial
|
||||
|
||||
.see-candidates-header
|
||||
margin-bottom: 30px
|
||||
margin: 30px
|
||||
text-align: center
|
||||
|
||||
#see-candidates
|
||||
cursor: pointer
|
||||
|
||||
.employer_icon
|
||||
width: 125px
|
||||
float: left
|
||||
margin: 0px 15px 15px 0px
|
||||
|
||||
.information_row
|
||||
height: 150px
|
||||
padding-right: 15px
|
||||
|
||||
#leftside
|
||||
width: 500px
|
||||
float: left
|
||||
|
||||
#rightside
|
||||
width: 500px
|
||||
float: left
|
||||
|
||||
.tablesorter
|
||||
//img
|
||||
// display: none
|
||||
|
@ -40,3 +62,9 @@
|
|||
min-width: 50px
|
||||
td:nth-child(7) select
|
||||
min-width: 100px
|
||||
|
||||
#outer-content-wrapper, #intermediate-content-wrapper, #inner-content-wrapper
|
||||
background: #949494
|
||||
|
||||
.main-content-area
|
||||
background-color: #EAEAEA
|
||||
|
|
|
@ -2,9 +2,9 @@ extends /templates/base
|
|||
|
||||
block content
|
||||
|
||||
h1(data-i18n="employers.want_to_hire_our_players") Want to hire expert CodeCombat players?
|
||||
h1(data-i18n="employers.want_to_hire_our_players") Hire CodeCombat Players
|
||||
|
||||
p
|
||||
//p
|
||||
span(data-i18n="employers.candidates_count_prefix") We currently have
|
||||
if activeCandidates.length
|
||||
| #{activeCandidates.length}
|
||||
|
@ -13,9 +13,48 @@ block content
|
|||
|
|
||||
span(data-i18n="employers.candidates_count_suffix") highly skilled and vetted developers looking for work.
|
||||
|
||||
div#info_wrapper
|
||||
|
||||
div#leftside
|
||||
|
||||
div.information_row
|
||||
|
||||
img(class="employer_icon" src="/images/pages/employer/employer_icon1.png")
|
||||
|
||||
h2 What is CodeCombat?
|
||||
|
||||
p CodeCombat is a multiplayer browser-based programming game. Players write code to control their forces in battle against other developers. We support JavaScript, Python, Lua, Clojure, and Io.
|
||||
|
||||
div.information_row
|
||||
|
||||
img(class="employer_icon" src="/images/pages/employer/employer_icon3.png")
|
||||
|
||||
h2 Who Are the Players?
|
||||
|
||||
p CodeCombateers are software developers who enjoy using their programming skills to play games. They range from college seniors at top 20 engineering programs to 20-year industry veterans.
|
||||
|
||||
div#rightside
|
||||
|
||||
div.information_row
|
||||
|
||||
img(class="employer_icon" src="/images/pages/employer/employer_icon2.png")
|
||||
|
||||
h2 How Do We Find Players?
|
||||
|
||||
p We host competitive tournaments to attract competitive software engieneers. We then use in-house algorithms to identify the best players among the top 5% of tournament winners.
|
||||
|
||||
div.information_row
|
||||
|
||||
img(class="employer_icon" src="/images/pages/employer/employer_icon4.png")
|
||||
|
||||
h2 Why Hire Through Us?
|
||||
|
||||
p Every CodeCombateer listed is looking for work, has demonstrated top notch technical skills, and has been personally screened by us. It's also completely free to search through us.
|
||||
|
||||
if !isEmployer && !me.isAdmin()
|
||||
h3.see-candidates-header
|
||||
a#see-candidates(title='Contact', tabindex=-1, data-toggle="coco-modal", data-target="modal/employer_signup", data-i18n="employers.see_candidates") Click here to see our candidates
|
||||
h3.see-candidates-header
|
||||
a#see-candidates(title='Contact', tabindex=-1, data-toggle="coco-modal", data-target="modal/employer_signup", data-i18n="employers.see_candidates") Click here to see our candidates
|
||||
|
||||
|
||||
if candidates.length
|
||||
|
||||
|
|
Loading…
Reference in a new issue