Make flyer show up in various views (but not in all, avoiding the map and wiki view problems)
This commit is contained in:
committed by
benmcmahon100
parent
bc8a6c92bf
commit
4fa1e2f405
@ -1,5 +1,6 @@
|
||||
extends ../layout
|
||||
block content
|
||||
include ../partials/flyer
|
||||
script(src="/bower_components/cal-heatmap/cal-heatmap.min.js")
|
||||
script.
|
||||
var challengeName = 'Profile View';
|
||||
@ -170,4 +171,4 @@ block content
|
||||
if (challenge.solution)
|
||||
a(href='/challenges/' + removeOldTerms(challenge.name) + '?solution=' + encodeURIComponent(encodeFcc(challenge.solution)), target='_blank')= removeOldTerms(challenge.name)
|
||||
else
|
||||
a(href='/challenges/' + removeOldTerms(challenge.name))= removeOldTerms(challenge.name)
|
||||
a(href='/challenges/' + removeOldTerms(challenge.name))= removeOldTerms(challenge.name)
|
||||
|
@ -4,6 +4,7 @@ block content
|
||||
link(rel='stylesheet', href='/bower_components/CodeMirror/addon/lint/lint.css')
|
||||
link(rel='stylesheet', href='/bower_components/CodeMirror/theme/monokai.css')
|
||||
link(rel='stylesheet', href='/css/ubuntu.css')
|
||||
include ../partials/flyer
|
||||
.row
|
||||
.col-md-4.col-lg-3
|
||||
.scroll-locker(id = "scroll-locker")
|
||||
|
@ -4,6 +4,7 @@ block content
|
||||
link(rel='stylesheet', href='/bower_components/CodeMirror/addon/lint/lint.css')
|
||||
link(rel='stylesheet', href='/bower_components/CodeMirror/theme/monokai.css')
|
||||
link(rel='stylesheet', href='/css/ubuntu.css')
|
||||
include ../partials/flyer
|
||||
.row
|
||||
.col-md-3.col-lg-3
|
||||
.scroll-locker(id = "scroll-locker")
|
||||
|
@ -4,6 +4,7 @@ block content
|
||||
link(rel='stylesheet', href='/bower_components/CodeMirror/addon/lint/lint.css')
|
||||
link(rel='stylesheet', href='/bower_components/CodeMirror/theme/monokai.css')
|
||||
link(rel='stylesheet', href='/css/ubuntu.css')
|
||||
include ../partials/flyer
|
||||
.row
|
||||
.col-md-4.col-lg-3
|
||||
.scroll-locker(id = "scroll-locker")
|
||||
|
@ -1,5 +1,6 @@
|
||||
extends ../layout-wide
|
||||
block content
|
||||
include ../partials/flyer
|
||||
.row
|
||||
.col-md-8.col-md-offset-2
|
||||
for step, index in description
|
||||
|
@ -1,5 +1,6 @@
|
||||
extends ../layout-wide
|
||||
block content
|
||||
include ../partials/flyer
|
||||
.row
|
||||
.col-xs-12.col-sm-12.col-md-4
|
||||
h4.text-center.challenge-instructions-title= name
|
||||
|
@ -1,5 +1,6 @@
|
||||
extends ../layout-wide
|
||||
block content
|
||||
include ../partials/flyer
|
||||
.row
|
||||
.col-md-4
|
||||
h4.text-center.challenge-instructions-title= name
|
||||
|
7
server/views/partials/flyer.jade
Normal file
7
server/views/partials/flyer.jade
Normal file
@ -0,0 +1,7 @@
|
||||
.container
|
||||
.row.flashMessage.negative-30
|
||||
.col-xs-12
|
||||
#billBoard.alert.alert-info.fade.in(style="display: none;")
|
||||
button.close(type='button', data-dismiss='alert')
|
||||
span.ion-close-circled#dismissBill
|
||||
#billContent
|
Reference in New Issue
Block a user