2014-07-02 14:44:33 -04:00
extends /templates/recruitment_base
2014-01-14 01:29:58 -05:00
block content
2014-07-08 23:47:22 -04:00
.artisanal-claim
2014-07-03 18:10:09 -04:00
if me.get('anonymous')
2014-07-10 22:17:51 -04:00
a#login-link(data-i18n="login.log_in") Log In
2014-07-03 18:10:09 -04:00
br
2014-07-02 18:48:26 -04:00
if !isEmployer && !me.isAdmin()
#tagline
h1(data-i18n="employers.hire_developers_not_credentials") Hire developers, not credentials.
2014-07-10 22:17:51 -04:00
button.btn.get-started-button.employer-button(data-i18n="employers.get_started") Get Started
2014-07-02 18:48:26 -04:00
else
2014-07-03 18:10:09 -04:00
if !me.get('anonymous')
2014-07-10 22:17:51 -04:00
a#logout-link(data-i18n="login.log_out") Log Out
2014-07-03 17:40:39 -04:00
br
2014-07-08 23:47:22 -04:00
.row
- var fullProfiles = isEmployer || me.isAdmin();
2014-07-07 22:34:35 -04:00
2014-07-08 23:47:22 -04:00
if fullProfiles
2014-07-10 22:17:51 -04:00
#filter-column.col-md-3
2014-07-08 23:47:22 -04:00
#filter
.panel-group#filter_panel
a#filter-link(data-toggle="collapse" data-target="#collapseOne")
.panel.panel-default
.panel-heading
h4.panel-title
span.glyphicon.glyphicon-folder-open#folder-icon
| Filter
.panel-collapse.collapse.in#collapseOne
.panel-body
p
2014-07-10 22:17:51 -04:00
strong(data-i18n="employers.already_screened") We've already technically screened all our candidates
span(data-i18n="employers.filter_further") , but you can also filter further:
2014-07-08 23:47:22 -04:00
form#filters
.filter_section#visa_filter
2014-07-10 22:17:51 -04:00
h4(data-i18n="employers.filter_visa") Visa
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="visa" value="Authorized to work in the US")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_visa_yes") US Authorized
| (#{candidatesInFilter("visa","Authorized to work in the US")})
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="visa" value="Need visa sponsorship")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_visa_no") Not Authorized
| (#{candidatesInFilter("visa","Need visa sponsorship")})
2014-07-08 23:47:22 -04:00
.filter_section#school_filter
2014-07-10 22:17:51 -04:00
h4(data-i18n="account_profile.education") Education
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="schoolFilter" value="Top School")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_education_top") Top School
| (#{candidatesInFilter("schoolFilter","Top School")})
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="schoolFilter" value="Other")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_education_other") Other
| (#{candidatesInFilter("schoolFilter","Other")})
2014-07-08 23:47:22 -04:00
.filter_section#role_filter
2014-07-10 22:17:51 -04:00
h4(data-i18n="employers.candidate_role") Role
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="roleFilter" value="Web Developer")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_role_web_developer") Web Developer
| (#{candidatesInFilter("roleFilter","Web Developer")})
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="roleFilter" value="Software Developer")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_role_software_developer") Software Developer
| (#{candidatesInFilter("roleFilter","Software Developer")})
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="roleFilter" value="Mobile Developer")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_role_mobile_developer") Mobile Developer
| (#{candidatesInFilter("roleFilter","Mobile Developer")})
2014-07-08 23:47:22 -04:00
.filter_section#seniority_filter
2014-07-10 22:17:51 -04:00
h4(data-i18n="employers.filter_experience") Experience
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="seniorityFilter" value="Senior")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_experience_senior") Senior
| (#{candidatesInFilter("seniorityFilter","Senior")})
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="seniorityFilter" value="Junior")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_experience_junior") Junior
| (#{candidatesInFilter("seniorityFilter","Junior")})
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="seniorityFilter" value="Recent Grad")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_experience_recent_grad") Recent Grad
| (#{candidatesInFilter("seniorityFilter","Recent Grad")})
2014-07-08 23:47:22 -04:00
label
input(type="checkbox" name="seniorityFilter" value="College Student")
2014-07-10 22:17:51 -04:00
span(data-i18n="employers.filter_experience_student") College Student
| (#{candidatesInFilter("seniorityFilter","College Student")})
2014-06-10 01:17:53 -04:00
2014-07-08 23:47:22 -04:00
//input#select_all_checkbox(type="checkbox" name="select_all" checked)
//| Select all
2014-07-10 22:17:51 -04:00
p#results
| #{numberOfCandidates}
span(data-i18n="employers.results") results
2014-07-08 23:47:22 -04:00
//button.btn#create-alert-button Create Alert
2014-07-10 22:17:51 -04:00
#candidates-column(class=fullProfiles ? "full-profiles col-md-9" : "teaser-profiles col-md-12")
if candidates.length
#candidate-table
table
tbody
for candidate, index in featuredCandidates
- var profile = candidate.get('jobProfile');
- var authorized = candidate.id; // If we have the id, then we are authorized.
- var profileAge = (new Date() - new Date(profile.updated)) / 86400 / 1000;
- var expired = profileAge > 2 * 30.4;
- var curated = profile.curated;
- var photoSize = fullProfiles ? 75 : 50;
tr.candidate-row(data-candidate-id=candidate.id, id=candidate.id, class=expired ? "expired" : "")
td(rowspan=3)
- var photoURL = candidate.getPhotoURL(photoSize, false, true);
div(class="candidate-picture " + (/^\/file/.test(photoURL) ? "" : "anonymous"), style='background-image: url(' + encodeURI(photoURL) + ')')
if fullProfiles
td.candidate-name-cell
strong= profile.name
| -
span= profile.jobTitle
tr.description_row(data-candidate-id=candidate.id)
if curated && curated.shortDescription
td.candidate-description
div #{curated.shortDescription}
else
td.candidate-description
div #{profile.shortDescription}
tr.border_row(data-candidate-id=candidate.id)
if curated
- var workHistory = curated.workHistory.join(",");
if !fullProfiles
td.tag_column
img(src="/images/pages/employer/tag.png")
| #{profile.jobTitle}
td.location_column
img(src="/images/pages/employer/location.png")
| #{curated.location}
td.education_column
img(src="/images/pages/employer/education.png")
| #{curated.education}
td.work_column
if workHistory
img(src="/images/pages/employer/briefcase.png")
| #{workHistory}
2014-07-08 23:47:22 -04:00
if !fullProfiles
2014-07-02 14:44:33 -04:00
div#info_wrapper
span.hiring-call-to-action
h2#start-hiring(data-i18n="employers.start_hiring") Start hiring.
2014-07-10 22:17:51 -04:00
button.btn.get-started-button.employer-button(data-i18n="employers.get_started") Get Started
2014-07-02 14:44:33 -04:00
2014-07-10 22:17:51 -04:00
h2#hiring-reasons.hiring-call-to-action(data-i18n="employers.reasons") Three reasons you should hire through us:
2014-07-02 14:44:33 -04:00
.reasons#top_row
.reason
img.employer_icon(src="/images/pages/employer/employer_icon2.png")
2014-07-10 22:17:51 -04:00
h3(data-i18n="employers.everyone_looking") Everyone here is looking for their next opportunity.
2014-07-02 14:44:33 -04:00
p(data-i18n="employers.everyone_looking_blurb") Forget about 20% LinkedIn InMail response rates. Everyone that we list on this site wants to find their next position and will respond to your request for an introduction.
.reason
img.employer_icon(src="/images/pages/employer/employer_icon6.png")
2014-07-10 22:17:51 -04:00
h3(data-i18n="employers.weeding") Sit back; we've done the weeding for you.
p(data-i18n="employers.weeding_blurb") Every player that we list has been screened for technical ability. We also perform phone screens for select candidates and make notes on their profiles to save you time.
2014-07-02 14:44:33 -04:00
.reason
img(class="employer_icon" src="/images/pages/employer/employer_icon3.png")
h3(data-i18n="employers.pass_screen") They will pass your technical screen.
2014-07-10 22:17:51 -04:00
p(data-i18n="employers.pass_screen_blurb") Review each candidate's code before reaching out. One employer found that 5x as many of our devs passed their technical screen than hiring from Hacker News.
2014-07-02 14:44:33 -04:00
span.hiring-call-to-action
h2(data-i18n="employers.make_hiring_easier") Make my hiring easier, please.
2014-07-10 22:17:51 -04:00
button.btn.get-started-button.employer-button(data-i18n="employers.get_started") Get Started
2014-07-02 14:44:33 -04:00
.reasons#bottom_row
.reason_long
img.employer_icon(src="/images/pages/employer/employer_icon1.png")
.reason_text
h3(data-i18n="employers.what") What is CodeCombat?
p(data-i18n="employers.what_blurb") CodeCombat is a multiplayer browser programming game. Players write code to control their forces in battle against other developers. We support JavaScript, Python, Lua, Clojure, CoffeeScript, and Io.
.reason_long
img.employer_icon(src="/images/pages/employer/employer_icon5.png")
.reason_text
2014-07-10 22:17:51 -04:00
h3(data-i18n="employers.cost") How much do we charge?
p(data-i18n="employers.cost_blurb") We charge 15% of first year's salary and offer a 100% money back guarantee for 90 days. We don't charge for candidates who are already actively being interviewed at your company.