freeCodeCamp/server/views/challenges/showStep.jade

59 lines
3.3 KiB
Plaintext
Raw Normal View History

2015-09-27 22:58:59 +00:00
extends ../layout-wide
block content
2016-04-15 02:49:19 +00:00
include ../partials/flyer
2015-09-27 22:58:59 +00:00
.row
.col-md-8.col-md-offset-2
2016-02-04 16:24:09 +00:00
for step, index in description
.challenge-step(class=index !== 0 ? 'hidden': '')
a(href=step[0] data-lightbox='img-enlarge')
img.gif-block.img-center.img-responsive(src='#{step[0]}' alt='#{step[1]}')
.row
.spacer
2016-02-04 16:24:09 +00:00
.col-xs-12.col-sm-10.col-sm-offset-1.col-md-8.col-md-offset-2
p.challenge-step-description!= step[2]
.spacer
.challenge-button-block
if step[3]
a.btn.btn-block.btn-primary.challenge-step-btn-action.btn-lg(id='#{index}' href='#{step[3]}' target='_blank') Open link in new tab (this unlocks the next step)
.button-spacer
if index === 0
.col-sm-4.hidden-xs  
else
.btn.btn-primary.btn-primary-ghost.col-sm-4.col-xs-12.challenge-step-btn-prev.btn-lg(id='#{index - 1}') Go to my previous step
.challenge-step-counter.large-p.col-sm-4.col-xs-12.text-center (#{index + 1} / #{description.length})
if index + 1 === description.length
.btn.btn-primary.col-sm-4.col-xs-12.challenge-step-btn-finish.btn-lg(id='last' class=step[3] && !isCompleted ? 'disabled' : '') Finish challenge
else
.btn.btn-primary.col-sm-4.col-xs-12.challenge-step-btn-next.btn-lg(id='#{index}' class=step[3] && !isCompleted ? 'disabled' : '') Go to my next step
.clearfix
.spacer
2015-09-27 22:58:59 +00:00
#challenge-step-modal.modal(tabindex='-1')
.modal-dialog.animated.fadeIn.fast-animation
.modal-content
.modal-header.challenge-list-header= compliment
a.close.closing-x(href='#', data-dismiss='modal', aria-hidden='true') ×
.modal-body
.text-center
#checkmark-container.row
#challenge-checkmark.animated.zoomInDown.delay-half
span.completion-icon.ion-checkmark-circled.text-primary
.spacer
.row
if (user)
2015-10-06 04:57:15 +00:00
#challenge-step-btn-submit.animated.fadeIn.btn.btn-lg.btn-primary.btn-block Submit and go to my next challenge
2015-09-27 22:58:59 +00:00
else
a.btn.btn-lg.btn-primary.btn-block(href='/challenges/next-challenge?id=' + id) Go to my next challenge
2015-09-27 22:58:59 +00:00
script.
2015-10-02 18:47:36 +00:00
var common = window.common || { init: [] };
common.challengeId = !{JSON.stringify(id)};
2015-09-27 22:58:59 +00:00
common.challengeName = !{JSON.stringify(name)};
common.challengeType = !{JSON.stringify(challengeType)};
2015-09-27 22:58:59 +00:00
common.dashedName = !{JSON.stringify(dashedName || '')};
common.gaName = !{JSON.stringify(gaName)};
2015-10-02 18:47:36 +00:00
common.isHonest = !{JSON.stringify(isHonest || false)};
common.isFrontEndCert = !{JSON.stringify(isFrontEndCert || false)};
common.isFullStackCert = !{JSON.stringify(isFullStackCert || false)};
common.challengeSeed = !{JSON.stringify(challengeSeed || [])};
2015-11-24 22:24:26 +00:00
include ../partials/challenge-footer