freeCodeCamp/views/challenges/partials/challenge.jade

24 lines
1018 B
Plaintext
Raw Normal View History

2014-10-20 23:25:24 +00:00
.panel.panel-primary
2014-10-20 22:35:42 +00:00
.panel-heading Challenge: #{name}
.panel.panel-body
img.img-center.img-responsive(src=image)
br
.visible-xs
2014-10-20 23:25:24 +00:00
iframe(src='//player.vimeo.com/video/#{video}', width='300', height='187', frameborder='0', webkitallowfullscreen='', mozallowfullscreen='', allowfullscreen='')
2014-10-20 22:35:42 +00:00
.hidden-xs
2014-10-20 23:25:24 +00:00
iframe(src='//player.vimeo.com/video/#{video}', width='600', height='375', style="display:block;", frameborder='0', webkitallowfullscreen='', mozallowfullscreen='', allowfullscreen='')
2014-10-20 22:35:42 +00:00
h3 Instructions:
for direction in directions
p= direction
h3 Relevant Links (these open up in a new tab):
ol
for link in links
li
a(href=link, target="blank")= link
br
h3 Challenges:
ol
for challenge in challenges
li= challenge
2014-10-20 22:35:42 +00:00
a.btn.btn-primary.btn-large.btn-block(href='/curriculum') I've completed this challenge