Begin shaping codebase for loopback migration.
This commit is contained in:
24
server/views/field-guide/all-articles.jade
Normal file
24
server/views/field-guide/all-articles.jade
Normal file
@@ -0,0 +1,24 @@
|
||||
extends ../layout
|
||||
block content
|
||||
.col-xs-12.col-sm-12.col-md-12
|
||||
.panel.panel-info
|
||||
.panel-heading.text-center Read our Field Guide in any order
|
||||
.panel-body
|
||||
.col-xs-12.col-md-10.col-md-offset-1
|
||||
.col-xs-12.no-right-padding
|
||||
h3
|
||||
ol
|
||||
each fieldGuide in allFieldGuideNamesAndIds
|
||||
if completedFieldGuides.indexOf(fieldGuide.id) > -1
|
||||
.row
|
||||
.hidden-xs.col-sm-3.col-md-2.text-primary.ion-checkmark-circled.padded-ionic-icon.text-center
|
||||
.col-xs-12.col-sm-9.col-md-10
|
||||
li.faded
|
||||
a(href="/field-guide/#{fieldGuide.dashedName}")= fieldGuide.name
|
||||
else
|
||||
.row
|
||||
.hidden-xs.col-sm-3.col-md-2
|
||||
span
|
||||
.col-xs-12.col-sm-9.col-md-10
|
||||
li
|
||||
a(href="/field-guide/#{fieldGuide.dashedName}")= fieldGuide.name
|
Reference in New Issue
Block a user