freeCodeCamp/views/challenges/show.jade

52 lines
3.1 KiB
Plaintext
Raw Normal View History

2014-11-02 17:07:40 +00:00
extends ../layout
block content
.row
.col-sm-12.col-md-8.col-xs-12
2014-11-07 01:38:47 +00:00
.panel.panel-primary
.panel-heading Challenge: #{name}
.panel.panel-body
.challenge-brief
h3.text-center
span.ion-android-clock
span Takes about #{time}
.btn.btn-primary.btn-large.btn-block.start-challenge Start the challenge
2014-11-07 01:38:47 +00:00
.challenge-content.hidden-element
.responsive-container
iframe(src='//player.vimeo.com/video/#{video}', frameborder='0', webkitallowfullscreen='', mozallowfullscreen='', allowfullscreen='')
h3 Steps:
h4
ol
for step in steps
li!= step
.btn.btn-primary.btn-large.btn-block.completed-challenge I've completed this challenge
2014-11-07 01:38:47 +00:00
.ten-pixel-break
.btn.btn-success.btn-large.btn-block.skip-challenge I want to skip this challenge for now
2014-11-07 01:38:47 +00:00
.panel-footer.text-center
span Need a break?  
a(href="http://blog.freecodecamp.com", target="_blank") Check out our blog
|   and  
a(href="https://twitter.com/freecodecamp", target="_blank") our recent tweets
| .
#complete-dialog.modal
.modal-dialog.animated.zoomIn.fast-animation
.modal-content
.modal-header
a.close(href='#', data-dismiss='modal', aria-hidden='true') ×
.text-center
h1.animated.zoomInDown Nicely done!
.animated.zoomInUp.delay-1
span.landing-icon.ion-checkmark-circled.text-primary
a.animated.fadeIn.delay-2.btn.btn-lg.btn-primary.btn-block.next-button(name='_csrf', value=_csrf, aria-hidden='true') Take me to my next challenge
2014-11-07 01:38:47 +00:00
#skip-dialog.modal
.modal-dialog.animated.zoomIn.fast-animation
.modal-content
.modal-header
a.close(href='#', data-dismiss='modal', aria-hidden='true') ×
.text-center
h1.animated.zoomInDown No problem.
h2.animated.zoomInDown You can retry this challenge any time.
.animated.zoomInUp.delay-1
span.landing-icon.ion-skip-forward.text-success
a.animated.fadeIn.delay-2.btn.btn-lg.btn-primary.btn-block.next-button(aria-hidden='true') Take me to my next challenge
2014-11-02 17:07:40 +00:00
.col-sm-12.col-md-4.col-xs-12
include ../partials/challenges