further build up challengemap
This commit is contained in:
committed by
Berkeley Martinez
parent
f410a94b54
commit
c36b8352d2
@ -1,6 +1,6 @@
|
|||||||
extends ../layout
|
extends ../layout
|
||||||
block content
|
block content
|
||||||
.jumbotron.text-center
|
.text-center
|
||||||
h2 Sign in with one of these options:
|
h2 Sign in with one of these options:
|
||||||
a.btn.btn-lg.btn-block.btn-github.btn-social(href='/auth/github')
|
a.btn.btn-lg.btn-block.btn-github.btn-social(href='/auth/github')
|
||||||
i.fa.fa-github
|
i.fa.fa-github
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
extends ../layout-wide
|
extends ../layout-wide
|
||||||
block content
|
block content
|
||||||
.col-xs-12.col-sm-3.col-sm-offset-9
|
.col-xs-12.col-sm-4.col-sm-offset-8
|
||||||
for superBlock, index in superBlocks
|
for superBlock, index in superBlocks
|
||||||
for challengeBlock in superBlock.blocks
|
for challengeBlock in superBlock.blocks
|
||||||
h4.bold #{challengeBlock.name} (#{challengeBlock.time})
|
h4.bold #{challengeBlock.name} (#{challengeBlock.time})
|
||||||
@ -11,7 +11,8 @@ block content
|
|||||||
= challenge.title
|
= challenge.title
|
||||||
span.sr-only= " Complete"
|
span.sr-only= " Complete"
|
||||||
else
|
else
|
||||||
p.negative-15
|
if challenge.type === "bonfire"
|
||||||
|
p.ion-asterisk.padded-ionic-icon.negative-15(name="#{challenge.dashedName}")
|
||||||
a(name="#{challenge.dashedName}" href="/challenges/#{challenge.dashedName}" class=challenge.isComingSoon ? 'disabled' : '')
|
a(name="#{challenge.dashedName}" href="/challenges/#{challenge.dashedName}" class=challenge.isComingSoon ? 'disabled' : '')
|
||||||
span= challenge.title
|
span= challenge.title
|
||||||
span.sr-only= " Incomplete"
|
span.sr-only= " Incomplete"
|
||||||
@ -23,10 +24,19 @@ block content
|
|||||||
span.text-success.small    
|
span.text-success.small    
|
||||||
strong
|
strong
|
||||||
em Coming Soon
|
em Coming Soon
|
||||||
if challenge.type === "bonfire"
|
else
|
||||||
span.text-info.small    
|
p.ion-ios-circle-outline.padded-ionic-icon.negative-15(name="#{challenge.dashedName}")
|
||||||
|
a(name="#{challenge.dashedName}" href="/challenges/#{challenge.dashedName}" class=challenge.isComingSoon ? 'disabled' : '')
|
||||||
|
span= challenge.title
|
||||||
|
span.sr-only= " Incomplete"
|
||||||
|
if challenge.markNew
|
||||||
|
span.text-success.small    
|
||||||
strong
|
strong
|
||||||
em Required
|
em New
|
||||||
|
if challengeBlock.isComingSoon
|
||||||
|
span.text-success.small    
|
||||||
|
strong
|
||||||
|
em Coming Soon
|
||||||
if (index < superBlocks.length)
|
if (index < superBlocks.length)
|
||||||
hr
|
hr
|
||||||
|
|
||||||
|
@ -23,13 +23,12 @@ block content
|
|||||||
else
|
else
|
||||||
p.wrappable.negative-10!= sentence
|
p.wrappable.negative-10!= sentence
|
||||||
if (MDNlinks.length)
|
if (MDNlinks.length)
|
||||||
.negative-30-bottom
|
|
||||||
#MDN-links
|
#MDN-links
|
||||||
p.negative-10 Here are some helpful links:
|
p.negative-10 Here are some helpful links:
|
||||||
for link, index in MDNlinks
|
for link, index in MDNlinks
|
||||||
.negative-10
|
.negative-10
|
||||||
ul: li: a(href=""+link, target="_blank") !{MDNkeys[index]}
|
ul: li: a(href=""+link, target="_blank") !{MDNkeys[index]}
|
||||||
|
.button-spacer
|
||||||
if (user)
|
if (user)
|
||||||
label.negative-10.btn.btn-primary.btn-block.btn-lg#submitButton
|
label.negative-10.btn.btn-primary.btn-block.btn-lg#submitButton
|
||||||
i.fa.fa-play
|
i.fa.fa-play
|
||||||
|
@ -19,6 +19,7 @@ block content
|
|||||||
for sentence in details
|
for sentence in details
|
||||||
p.wrappable.negative-10!= sentence
|
p.wrappable.negative-10!= sentence
|
||||||
.negative-bottom-margin-30
|
.negative-bottom-margin-30
|
||||||
|
.button-spacer
|
||||||
label.negative-10.btn.btn-primary.btn-lg.btn-block#submitButton
|
label.negative-10.btn.btn-primary.btn-lg.btn-block#submitButton
|
||||||
i.fa.fa-play
|
i.fa.fa-play
|
||||||
| Run tests (ctrl + enter)
|
| Run tests (ctrl + enter)
|
||||||
|
@ -29,6 +29,7 @@ block content
|
|||||||
for link, index in MDNlinks
|
for link, index in MDNlinks
|
||||||
.negative-10
|
.negative-10
|
||||||
ul: li: a(href="" + link, target="_blank") !{MDNkeys[index]}
|
ul: li: a(href="" + link, target="_blank") !{MDNkeys[index]}
|
||||||
|
.button-spacer
|
||||||
if (user)
|
if (user)
|
||||||
form.form-horizontal(novalidate='novalidate', name='completedWithForm')
|
form.form-horizontal(novalidate='novalidate', name='completedWithForm')
|
||||||
.form-group.text-center.negative-10
|
.form-group.text-center.negative-10
|
||||||
|
Reference in New Issue
Block a user