freeCodeCamp/server/views/resources/stories.jade

26 lines
1.2 KiB
Plaintext
Raw Normal View History

2015-10-07 04:28:00 +00:00
extends ../layout
block content
2016-01-10 04:12:32 +00:00
h1.text-center Stories from happy campers
hr
.row
.col-xs-12.col-sm-10.col-sm-offset-1
2015-10-07 04:28:00 +00:00
.row
2016-01-10 04:12:32 +00:00
for story in stories
.col-xs-12.col-sm-6.col-md-4
.height-500
a(href=story.linkedin target='_blank')
img.testimonial-image.img-responsive.img-center(src=story.image)
h3.text-center= story.camper
|  
a.fa.fa-linkedin-square.text-primary(alt="#{story.camper}'s LinkedIn Profile", href=story.linkedin, target='_blank')
p.text-justify= story.quote
.col-xs-12.col-sm-10.col-sm-offset-1
if moreStories
.text-center
a.btn.btn-lg.btn-primary.btn-primary-ghost.btn-block(href="/all-stories") Show more stories
.spacer
2015-10-07 04:28:00 +00:00
2016-01-10 04:12:32 +00:00
if !user
.text-center
a.btn.btn-cta.signup-btn.btn-block(href="/login") Start learning to code (it's free)