freeCodeCamp/views/partials/challenges.jade

10 lines
588 B
Plaintext
Raw Normal View History

2014-10-25 17:27:09 +00:00
.panel.panel-primary
2014-10-20 22:35:42 +00:00
.panel-heading Challenges
.panel-body
ol(start='0')
2014-12-23 05:07:50 +00:00
for challenge in challenges
2014-12-14 17:01:37 +00:00
li
2014-12-23 05:07:50 +00:00
a(href="/challenges/#{challenge.challengeNumber}", class="#{ (cc && cc[challenge.challengeNumber] > 0) ? 'strikethrough' : '' }") #{challenge.name}
|   (#{challenge.time} mins)
a.btn.btn-primary(href="/done-with-first-100-hours", class="#{ ((cc && cc[53] === 0) || (!cc)) ? 'disabled' : '' }") I've finished all Free Code Camp challenges and all the Easy and Medium CoderByte Challenges