2015-04-02 17:32:49 +00:00
doctype html
html(ng-app='habitrpg', ng-controller='RootCtrl')
head
meta(charset='utf-8')
2015-06-23 06:47:18 +00:00
link(href='//fonts.googleapis.com/css?family=Lato:400,700', rel='stylesheet', type='text/css')
2015-07-30 23:01:47 +00:00
title Habitica | Your Life the Role Playing Game
2015-04-02 17:32:49 +00:00
meta(name='description', content='')
meta(name='keywords', content='')
meta(name='author', content='')
meta(name='geo.placename', content='')
meta(name='viewport', content='width=device-width, maximum-scale=1')
2015-10-21 20:37:33 +00:00
meta(property='og:url', content='https://habitica.com/static/front')
2015-10-21 19:59:17 +00:00
meta(property='og:type', content='website')
meta(property='og:title', content='Habitica: Your Life the Role Playing Game')
meta(property='og:description', content='Habitica is a free habit building and productivity app that treats your real life like a game. With in-game rewards and punishments to motivate you and a strong social network to inspire you, Habitica can help you achieve your goals to become healthy, hard-working, and happy.')
meta(property='og:site_name', content='Habitica')
2015-10-21 21:25:03 +00:00
meta(property='og:image', content='https://s3.amazonaws.com/habitica-assets/assets/gryphon_logo_300x300.png')
2015-10-21 19:59:17 +00:00
meta(property='fb:app_id', content='128307497299777')
2015-09-10 20:36:23 +00:00
meta(name='twitter:card' content='summary')
meta(name='twitter:site' content='@habitica')
meta(name='twitter:title' content='Habitica: Your Life the Role Playing Game')
2015-09-10 21:12:00 +00:00
meta(name='twitter:description' content='Habitica is a free habit-building and productivity app that treats your real life like a game! Motivate yourself with in-game rewards and social encouragement.')
2015-09-10 20:36:23 +00:00
meta(name='twitter:image' content='https://s3.amazonaws.com/habitica-assets/assets/gryphon_logo.png')
2015-10-10 11:52:53 +00:00
meta(name='apple-itunes-app' content='app-id=994882113')
2015-04-02 17:32:49 +00:00
link(rel='canonical', href='', type='text/html')
2015-07-30 23:01:47 +00:00
link(rel='shortcut icon', href='/favicon.ico')
2015-04-03 18:42:03 +00:00
link(rel='stylesheet', type='text/css', href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css')
2015-04-02 17:32:49 +00:00
script(type='text/javascript').
2015-08-14 12:53:17 +00:00
window.env = !{JSON.stringify(env._.pick(env, env.clientVars))};
2015-04-02 17:32:49 +00:00
!= env.getManifestFiles("tmp_static_front")
2013-09-01 16:56:43 +00:00
2015-04-03 18:42:03 +00:00
script(type='text/javascript', src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js')
script(type='text/javascript', src='https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.12.1/ui-bootstrap.min.js')
script(type='text/javascript', src='https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.12.1/ui-bootstrap-tpls.min.js')
2015-04-02 17:32:49 +00:00
body(ng-controller='AuthCtrl')
include ./login-modal
2015-06-27 21:08:38 +00:00
include ../shared/avatar/index
2015-05-16 03:31:47 +00:00
include ../shared/mixins
include ../shared/modals/members
2015-11-15 21:42:48 +00:00
noscript(class='banner')
| Alas! Your browser doesn't have JavaScript enabled and without it,
| Habitica can't work properly
br
a(href='http://www.enable-javascript.com/', target='_blank')
| Please Enable JavaScript to continue!
2015-04-02 17:32:49 +00:00
.mobile-container
2015-06-23 15:11:03 +00:00
div(ng-init='Analytics.track({"hitType":"pageview","eventCategory":"page","eventAction":"landing page","page":"/static/front"});')
2015-04-02 17:32:49 +00:00
header#header
nav.navbar.navbar-default.navbar-static-top
.container-fluid
// Brand and toggle get grouped for better mobile display
.navbar-header
button.navbar-toggle.collapsed(type='button', data-toggle='collapse', data-target='#bs-example-navbar-collapse-1')
span.sr-only Toggle navigation
span.icon-bar
span.icon-bar
span.icon-bar
a.navbar-brand(href='#')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto(src='https://d2afqr2xdmyzvu.cloudfront.net/assets/habitica_lockup2_desat.png')
2015-04-02 17:32:49 +00:00
// Collect the nav links, forms, and other content for toggling
#bs-example-navbar-collapse-1.collapse.navbar-collapse
ul.nav.navbar-nav.navbar-right
li
2015-04-02 23:41:38 +00:00
a(href='/static/features')=env.t('companyAbout')
2015-04-02 17:32:49 +00:00
li
2015-04-02 23:41:38 +00:00
a(href='/static/plans')=env.t('groupPlans')
2015-04-02 17:32:49 +00:00
li
2015-04-02 23:41:38 +00:00
a(href='http://blog.habitrpg.com/')=env.t('companyBlog')
2015-04-02 17:32:49 +00:00
li
2015-04-02 23:41:38 +00:00
a(href='/static/press-kit')=env.t('presskit')
2015-04-02 17:32:49 +00:00
li
2015-04-02 23:41:38 +00:00
a(href='/static/contact')=env.t('contactUs')
2015-04-02 17:32:49 +00:00
li
2015-05-01 14:44:19 +00:00
button#header-play-button.btn.btn-primary.navbar-btn.navbar-right(ng-click='playButtonClick()')= env.t('playButtonFull')
2015-07-02 21:13:22 +00:00
#intro
2015-07-04 00:13:31 +00:00
h1=env.t('motivate1')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.center-block.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/intro.png')
2015-04-02 17:32:49 +00:00
// insert intro images
.introcall.bg-success
2015-11-12 02:10:24 +00:00
h4= env.t('joinOthers', {userCount:'900,000'})
2015-04-02 17:32:49 +00:00
small
2015-05-01 14:44:19 +00:00
button#play-btn.btn.btn-primary.btn-lg.gamifybutton(ng-click='playButtonClick()')= env.t('free')
2015-04-02 17:32:49 +00:00
.presslogos.text-center
2015-05-01 14:44:19 +00:00
= env.t('featuredIn')
2015-04-02 17:32:49 +00:00
br
2015-08-13 15:16:24 +00:00
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/lifehacker.png')
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/nyt-logo.png')
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/makeuseof.png')
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/Forbes_logo.png')
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/Cnetlogo.png')
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/Fast-Company-logo.png')
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/kickstarter-logo.png')
2015-04-02 17:32:49 +00:00
#intro-text
.container-fluid
.row
.col-md-8.col-md-offset-2
p.lead.text-center
2015-05-01 14:44:19 +00:00
= env.t('leadText')
2015-04-02 17:32:49 +00:00
section#testimonial-carousel.bg-info
.container-fluid
.row
.col-md-3.col-md-offset-1
2015-05-01 14:44:19 +00:00
h2= env.t('testimonialHeading')
2015-08-13 15:16:24 +00:00
img.img-say.img-responsive.visible-lg-block(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/uses/publicSpaces.png')
2015-04-02 17:32:49 +00:00
// Testimonials
.col-md-8.col-sm-10.col-sx-10
2015-04-19 03:29:36 +00:00
#quote-carousel.carousel.slide(data-interval='10000', data-ride='carousel')
2015-04-02 17:32:49 +00:00
// Bottom Carousel Indicators
ol.carousel-indicators
li.active(data-target='#quote-carousel', data-slide-to='0')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/Drag0nsilver.png', alt='')
2015-04-02 17:32:49 +00:00
li(data-target='#quote-carousel', data-slide-to='1')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/frabjabulous.png', alt='')
2015-04-02 17:32:49 +00:00
li(data-target='#quote-carousel', data-slide-to='2')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/AndeeLiao.png', alt='')
2015-04-02 17:32:49 +00:00
li(data-target='#quote-carousel', data-slide-to='3')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/AlexandraSo.png', alt='')
2015-04-02 17:32:49 +00:00
// Carousel Slides / Quotes
.carousel-inner.text-center
// Quote 1
.item.active
blockquote
.row
.col-sm-8.col-sm-offset-2
p
2015-05-01 14:44:19 +00:00
= env.t('dragonsilverQuote')
2015-04-02 17:32:49 +00:00
small Drag0nsilver
// Quote 2
.item
blockquote
.row
.col-sm-8.col-sm-offset-2
p
2015-05-01 14:44:19 +00:00
= env.t('frabjabulousQuote')
2015-04-02 17:32:49 +00:00
small frabjabulous
// Quote 3
.item
blockquote
.row
.col-sm-8.col-sm-offset-2
p
2015-05-16 03:31:47 +00:00
= env.t('andeeliaoQuote')
2015-04-02 17:32:49 +00:00
small AndeeLiao
.item
blockquote
.row
.col-sm-8.col-sm-offset-2
p
2015-05-16 03:31:47 +00:00
= env.t('alexandraQuote')
2015-04-02 17:32:49 +00:00
small _AlexandraSo_
// Carousel Buttons Next/Prev
a.left.carousel-control(data-slide='prev', href='#quote-carousel')
i.fa.fa-chevron-left
a.right.carousel-control(data-slide='next', href='#quote-carousel')
i.fa.fa-chevron-right
2015-05-01 14:44:19 +00:00
button.btn.btn-primary.btn-lg.gamifybutton.fixedcta(ng-click='playButtonClick()')= env.t('gamifyButton')
2015-04-02 17:32:49 +00:00
section#uses
2015-05-01 15:48:25 +00:00
h2= env.t('examplesHeading')
2015-04-02 17:32:49 +00:00
.container-fluid
2015-04-19 15:52:34 +00:00
#myCarousel.carousel.slide(data-interval='10000', data-ride='carousel')
2015-04-02 17:32:49 +00:00
ul.nav.nav-pills.nav-justified
li.active(data-target='#myCarousel', data-slide-to='0')
2015-05-01 15:48:25 +00:00
a(href='#')=env.t('work')
2015-04-02 17:32:49 +00:00
li(data-target='#myCarousel', data-slide-to='1')
2015-05-01 15:48:25 +00:00
a(href='#')=env.t('health')
2015-04-02 17:32:49 +00:00
li(data-target='#myCarousel', data-slide-to='2')
2015-05-01 15:48:25 +00:00
a(href='#')=env.t('teams')
2015-04-02 17:32:49 +00:00
li(data-target='#myCarousel', data-slide-to='3')
2015-05-01 15:48:25 +00:00
a(href='#')=env.t('school')
2015-04-02 17:32:49 +00:00
li(data-target='#myCarousel', data-slide-to='4')
2015-05-01 15:48:25 +00:00
a(href='#')=env.t('goals')
2015-04-02 17:32:49 +00:00
li(data-target='#myCarousel', data-slide-to='5')
2015-05-01 15:48:25 +00:00
a(href='#')=env.t('chores')
2015-04-02 17:32:49 +00:00
// Wrapper for slides
.carousel-inner(style='z-index:0;')
.item.active.work-use
h3
2015-05-01 15:48:25 +00:00
= env.t('work')
2015-04-02 17:32:49 +00:00
br
small
2015-05-04 15:56:45 +00:00
a(href='/static/plans')= env.t('businessText')
2015-04-02 17:32:49 +00:00
.carousel-content.row
.sampletasks.col-lg-4.col-md-6.col-sm-12.col-xs-12
2015-05-01 15:48:25 +00:00
h4= env.t('sampleHabits')
2015-04-02 17:32:49 +00:00
div(style='width:100%; background-color: rgb(252, 229, 205); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(219, 120, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('businessSample1')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(201, 218, 248); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(90, 98, 223); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('businessSample2')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: #d9ead3; color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(113, 176, 91); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('businessSample3')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('businessSample4')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(244, 204, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(220, 93, 93); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(220, 93, 93); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('businessSample5')
2015-08-13 15:16:24 +00:00
img.sample-img.visible-lg-inline-block(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/uses/coding.png')
2015-04-02 17:32:49 +00:00
.usetweet-groups.col-lg-5.col-md-6.visible-lg-inline-block.visible-md-inline-block
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='frabjabulous', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/frabjabulous.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('frabjabulousQuote')
2015-04-02 17:32:49 +00:00
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='_AlexandraSo_', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/AlexandraSo.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('alexandraQuote')
2015-04-02 17:32:49 +00:00
// End item
.item.health-use
2015-05-01 15:48:25 +00:00
h3= env.t('health')
2015-04-02 17:32:49 +00:00
.carousel-content.row
.sampletasks.col-lg-4.col-md-6.col-sm-12.col-xs-12
2015-05-01 15:48:25 +00:00
h4= env.t('sampleHabits')
2015-04-02 17:32:49 +00:00
div(style='width:100%; background-color: #d9ead3; color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(113, 176, 91); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(113, 176, 91); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('healthSample1')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(244, 204, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(220, 93, 93); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(220, 93, 93); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('healthSample2')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: #d9ead3; color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(113, 176, 91); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(113, 176, 91); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('healthSample3')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(255, 207, 66); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('healthSample4')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('healthSample5')
2015-08-13 15:16:24 +00:00
img.sample-img.visible-lg-inline-block(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/uses/clipart-rosemonkeyct-meditation.png')
2015-04-02 17:32:49 +00:00
.usetweet-groups.col-lg-5.col-md-6.visible-lg-inline-block.visible-md-inline-block
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='EvaGantz', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/EvaGantz.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('evagantzQuote')
2015-04-02 17:32:49 +00:00
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='supermouse35', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/supermouse35.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('supermouse35Quote')
2015-04-02 17:32:49 +00:00
// End Item
.item.team-use
2015-05-01 15:48:25 +00:00
h3= env.t('teams')
2015-04-02 17:32:49 +00:00
.carousel-content.row
.sampletasks.col-lg-4.col-md-6.col-sm-12.col-xs-12
2015-05-01 15:48:25 +00:00
h4= env.t('sampleToDo')
2015-04-02 17:32:49 +00:00
div(style='width:100%; background-color: rgb(252, 229, 205); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(219, 120, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);')
span(style='padding: 0.5em 0px 0em 0em; color: #666;') ☐
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('teamSample1')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);')
span(style='padding: 0.5em 0px 0em 0em; color: #666;') ☐
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('teamSample2')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(244, 204, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(220, 93, 93); border-right: 1px solid rgba(0, 0, 0, 0.25);')
span(style='padding: 0.5em 0px 0em 0em; color: #666;') ☐
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('teamSample3')
2015-04-02 17:32:49 +00:00
br
2015-08-13 15:16:24 +00:00
img.sample-img.visible-lg-inline-block(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/uses/publicSpaces.png')
2015-04-02 17:32:49 +00:00
.usetweet-groups.col-lg-5.col-md-6.visible-lg-inline-block.visible-md-inline-block
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='Althaire', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/Althaire.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('althaireQuote')
2015-04-02 17:32:49 +00:00
// End Item
.item.school-use
2015-05-01 15:48:25 +00:00
h3= env.t('school')
2015-04-02 17:32:49 +00:00
.carousel-content.row
.sampletasks.col-lg-4.col-md-6.col-sm-12.col-xs-12
2015-05-01 15:48:25 +00:00
h4= env.t('sampleHabits')
2015-04-02 17:32:49 +00:00
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('schoolSample1')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: #d9ead3; color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(113, 176, 91); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('schoolSample2')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('schoolSample3')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(244, 204, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(220, 93, 93); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(220, 93, 93); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('schoolSample4')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(201, 218, 248); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(90, 98, 223); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(90, 98, 223); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('schoolSample5')
2015-08-13 15:16:24 +00:00
img.sample-img.visible-lg-inline-block(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/uses/reading.png')
2015-04-02 17:32:49 +00:00
.usetweet-groups.col-lg-5.col-md-6.visible-lg-inline-block.visible-md-inline-block
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='InfH', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/InfH.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
2015-05-01 15:48:25 +00:00
.popover-content= env.t('infhQuote')
2015-04-02 17:32:49 +00:00
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='Drei-M', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/Drei-M.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-16 03:31:47 +00:00
= env.t('dreimQuote')
2015-04-02 17:32:49 +00:00
// End Item
.item.improvement-use
2015-05-01 15:48:25 +00:00
h3= env.t('goals')
2015-04-02 17:32:49 +00:00
.carousel-content.row
.sampletasks.col-lg-4.col-md-6.col-sm-12.col-xs-12
2015-05-01 15:48:25 +00:00
h4= env.t('sampleDailies')
2015-04-02 17:32:49 +00:00
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('goalSample1')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: #d9ead3; color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(113, 176, 91); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(113, 176, 91); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('goalSample2')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('goalSample3')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('goalSample4')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(201, 218, 248); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(90, 98, 223); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('goalSample5')
2015-08-13 15:16:24 +00:00
img.sample-img.visible-lg-inline-block(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/uses/gaining_an_achievement_by_cosmic_caterpillar-d7uyv5z.png')
2015-04-02 17:32:49 +00:00
.usetweet-groups.col-lg-5.col-md-6.visible-lg-inline-block.visible-md-inline-block
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='Kazui', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/Kazui.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-16 03:31:47 +00:00
= env.t('kazuiQuote')
2015-04-02 17:32:49 +00:00
// End Item
.item.housework-use
2015-05-01 15:48:25 +00:00
h3= env.t('chores')
2015-04-02 17:32:49 +00:00
.carousel-content.row
.sampletasks.col-lg-4.col-md-6.col-sm-12.col-xs-12
2015-05-01 15:48:25 +00:00
h4= env.t('sampleDailies')
2015-04-02 17:32:49 +00:00
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('choreSample1')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: #d9ead3; color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(113, 176, 91); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(113, 176, 91); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('choreSample2')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: #d9ead3; color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(113, 176, 91); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; background-color: rgb(113, 176, 91); border-right: 0px none;') -
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('choreSample3')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(255, 242, 204); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(255, 207, 66); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('choreSample4')
2015-04-02 17:32:49 +00:00
br
div(style='width:100%; background-color: rgb(201, 218, 248); color: rgb(51, 51, 51); text-align:center; padding: 0px; line-height: 1.62765; list-style: none outside none; padding: 0px; height: 2.3em; min-height: 1.62765em; margin-bottom:0.75em; margin:0px; box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.5) inset;')
.task-btn(style='display: inline-block; width: 1.62765em; height: 1.62765em; padding: 0px; margin:0px; line-height: 1.62765; text-align: center; color: rgb(34, 34, 34); float:left; cursor: pointer; vertical-align: top; left:0px; position:relative; background-color: rgb(90, 98, 223); border-right: 1px solid rgba(0, 0, 0, 0.25);') +
|
2015-05-01 15:48:25 +00:00
.task-desc(style='display: inline-block; font-family: Lato,sans-serif; padding: 0.6em 0px 0em 1em; letter-spacing: normal; float:left; word-wrap: break-word;')= env.t('choreSample5')
2015-08-13 15:16:24 +00:00
img.sample-img.visible-lg-inline-block(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/uses/dusting_by_leephon.png')
2015-04-02 17:32:49 +00:00
.usetweet-groups.col-lg-5.col-md-6.visible-lg-inline-block.visible-md-inline-block
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='autumnesquirrel', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/autumnesquirrel.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
2015-05-01 15:48:25 +00:00
.popover-content= env.t('autumnesquirrelQuote')
2015-04-02 17:32:49 +00:00
.usetweet-group
2015-08-13 15:16:24 +00:00
img(data-toggle='tooltip', data-placement='top', title='irishfeet123', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/irishfeet123.png')
2015-04-02 17:32:49 +00:00
.usetweet.tweet.popover.right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('irishfeet123Quote')
2015-04-02 17:32:49 +00:00
// End Item
// End Carousel
2015-05-01 14:44:19 +00:00
button.btn.btn-primary.btn-lg.gamifybutton.fixedcta(ng-click='playButtonClick()')= env.t('gamifyButton')
2015-04-02 17:32:49 +00:00
section#rewards.bg-warning.container-fluid
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12
2015-05-01 15:48:25 +00:00
h2.headline= env.t('rewardHeading')
2015-04-02 17:32:49 +00:00
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12.col-xs-12
p.sectioninfo
2015-05-01 15:48:25 +00:00
= env.t('rewardByline1')
2015-04-02 17:32:49 +00:00
br
br
2015-05-01 15:48:25 +00:00
= env.t('rewardByline2')
2015-04-02 17:32:49 +00:00
.scrolltweet.hidden-xs.hidden-sm
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.scrolltweet-image(data-toggle='tooltip', data-placement='top', title='Elmi', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/Elmi.png')
2015-04-02 17:32:49 +00:00
.tweet.popover.right.pull-right
.arrow
2015-05-01 15:48:25 +00:00
.popover-content= env.t('elmiQuote')
2015-04-02 17:32:49 +00:00
.col-lg-4.col-md-4.col-lg-offset-1.col-sm-8.well.col-xs-8.col-xs-offset-2.col-sm-offset-2.well-lg
.avatarscroll
h2
span.glyphicon.glyphicon-check
h2
span.glyphicon.glyphicon-arrow-down
2015-08-13 15:16:24 +00:00
img.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/misc/shop_gold.png')
img.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/misc/shop_gold.png')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/misc/shop_gold.png')
2015-04-02 17:32:49 +00:00
h2
span.glyphicon.glyphicon-arrow-down
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/TVreward.png')
2015-05-01 14:44:19 +00:00
button.btn.btn-primary.btn-lg.fixedcta.gamifybutton(ng-click='playButtonClick()')= env.t('gamifyButton')
2015-04-02 17:32:49 +00:00
section#levels.container-fluid
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12
2015-05-01 15:48:25 +00:00
h2.headline= env.t('unlockHeadline')
2015-04-02 17:32:49 +00:00
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12
p.sectioninfo
2015-05-01 15:48:25 +00:00
= env.t('unlockByline1')
2015-04-02 17:32:49 +00:00
br
br
2015-05-01 15:48:25 +00:00
= env.t('unlockByline2')
2015-04-02 17:32:49 +00:00
.scrolltweet.hidden-xs.hidden-sm
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.scrolltweet-image(data-toggle='tooltip', data-placement='top', title='16bitFil', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/16bitFil.png')
2015-04-02 17:32:49 +00:00
.tweet.popover.right.pull-right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('sixteenBitFilQuote')
2015-04-02 17:32:49 +00:00
.col-lg-4.col-md-4.col-lg-offset-1.col-sm-8.well.col-xs-8.col-xs-offset-2.col-sm-offset-2
.avatarscroll
2015-08-13 15:16:24 +00:00
img.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/avatar/avatarstatic.png')
2015-04-02 17:32:49 +00:00
h2
span.glyphicon.glyphicon-arrow-down
2015-08-13 15:16:24 +00:00
img.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/SAMPLEadventurers.png')
2015-05-01 14:44:19 +00:00
button.btn.btn-primary.btn-lg.fixedcta.gamifybutton(ng-click='playButtonClick()')= env.t('gamifyButton')
2015-04-02 17:32:49 +00:00
section#health.bg-danger.container-fluid
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12
2015-05-01 15:48:25 +00:00
h2.headline= env.t('punishHeading1')
2015-04-02 17:32:49 +00:00
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12
2015-05-01 15:48:25 +00:00
h2= env.t('punishHeading2')
p.sectioninfo= env.t('punishByline')
2015-04-02 17:32:49 +00:00
.scrolltweet.hidden-xs.hidden-sm
2015-08-13 15:16:24 +00:00
img.scrolltweet-image(data-toggle='tooltip', data-placement='top', title='Zelah Meyer', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/Zelah_Meyer.png')
2015-04-02 17:32:49 +00:00
.tweet.popover.right.pull-right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('zelahQuote')
2015-04-02 17:32:49 +00:00
.col-lg-4.col-md-4.col-lg-offset-1.col-sm-8.well.col-xs-8.col-xs-offset-2.col-sm-offset-2.well-lg
h2
span.glyphicon.glyphicon-unchecked
.health-progress
.meter-label(tooltip='Health')
span.glyphicon.glyphicon-heart
.meter.health
.bar
div(style='width:100%;')
h2
span.glyphicon.glyphicon-arrow-down
.health-progress
.meter-label(tooltip='Health')
span.glyphicon.glyphicon-heart
.meter.health
.bar
div(style='width:50%;')
2015-05-01 14:44:19 +00:00
button.btn.btn-primary.btn-lg.fixedcta.gamifybutton(ng-click='playButtonClick()')= env.t('gamifyButton')
2015-04-02 17:32:49 +00:00
section#quest.container-fluid
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12
2015-05-01 15:48:25 +00:00
h2.headline= env.t('questHeading1')
2015-04-02 17:32:49 +00:00
.row
.col-lg-5.col-lg-offset-1.col-md-5.col-sm-12
2015-05-01 15:48:25 +00:00
h2= env.t('questHeading2')
2015-04-02 17:32:49 +00:00
p.sectioninfo
2015-05-01 15:48:25 +00:00
= env.t('questByline1')
2015-04-02 17:32:49 +00:00
br
2015-05-01 15:48:25 +00:00
= env.t('questByline2')
2015-04-02 17:32:49 +00:00
.scrolltweet.hidden-xs.hidden-sm
2015-08-13 15:16:24 +00:00
img.scrolltweet-image(data-toggle='tooltip', data-placement='top', title='skysailor', src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/testimonials/skysailor.png')
2015-04-02 17:32:49 +00:00
.tweet.popover.right.pull-right
.arrow
.popover-content
2015-05-01 15:48:25 +00:00
= env.t('skysailorQuote')
2015-04-02 17:32:49 +00:00
.col-lg-4.col-md-6.col-md-offset-1.col-lg-offset-1.col-sm-10.well.col-xs-10.col-xs-offset-1.col-sm-offset-1.well-lg
2015-08-13 15:52:38 +00:00
img.clearfix.img-responsive.center-block(style='padding-bottom:30px;', src="https://d2afqr2xdmyzvu.cloudfront.net/front/images/Quest_dilatory_dragonSmall.png")
2015-04-02 17:32:49 +00:00
.row
.col-lg-5.col-md-5.col-sm-5.col-sm-offset-0.col-xs-5.col-xs-offset-0
.health-progress
.meter-label(tooltip='Health')
span.glyphicon.glyphicon-heart
.meter.health
.bar
div(style='width:20%;')
.quest-friend-img
2015-08-13 15:16:24 +00:00
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/party/AnnaCosplay.png')
2015-04-02 17:32:49 +00:00
.col-md-1.col-sm-1.col-xs-1
h2
span.glyphicon.glyphicon-arrow-right
.col-lg-5.col-md-offset-1.col-md-5.col-sm-5.col-sm-offset-0.col-xs-5.col-xs-offset-0
.health-progress
.meter-label(tooltip='Health')
span.glyphicon.glyphicon-heart
.meter.health
.bar
div(style='width:0%;')
.quest-friend-img
2015-08-13 15:16:24 +00:00
img(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/party/GrimReaper.png')
2015-05-01 14:44:19 +00:00
button.btn.btn-primary.btn-lg.fixedcta.gamifybutton(ng-click='playButtonClick()')= env.t('gamifyButton')
2015-04-02 17:32:49 +00:00
section#features.bg-info.container-fluid
.row
2015-05-01 15:48:25 +00:00
h2= env.t('featuresHeading')
2015-04-02 17:32:49 +00:00
.row
.col-md-4.col-md-offset-2.col-sm-6
.feature-img
2015-08-13 15:16:24 +00:00
img.center-block.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/Mount.png')
2015-04-02 17:32:49 +00:00
.featuretext
2015-05-01 15:48:25 +00:00
h4= env.t('featurePetHeading')
2015-04-02 17:32:49 +00:00
p
2015-05-01 15:48:25 +00:00
= env.t('featurePetByline')
2015-04-02 17:32:49 +00:00
.col-md-4.col-sm-6
.feature-img.center-block
2015-08-30 22:52:16 +00:00
img.img-rendering-auto(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/achievement-triadbingo.png')
img.img-rendering-auto(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/achievement-perfect.png')
2015-04-02 17:32:49 +00:00
.featuretext
2015-05-01 15:48:25 +00:00
h4= env.t('featureAchievementHeading')
p= env.t('featureAchievementByline')
2015-04-02 17:32:49 +00:00
.row
.col-md-4.col-md-offset-2.col-sm-6
.feature-img
2015-08-13 15:16:24 +00:00
img.center-block.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/Promo_springclasses2015.png')
2015-04-02 17:32:49 +00:00
.featuretext
2015-05-01 15:48:25 +00:00
h4= env.t('featureEquipHeading')
2015-04-02 17:32:49 +00:00
p
2015-05-01 15:48:25 +00:00
= env.t('featureEquipByline')
2015-04-02 17:32:49 +00:00
.col-md-4.col-sm-6
.feature-img
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.center-block.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/Party-Header.png')
2015-04-02 17:32:49 +00:00
.featuretext
2015-05-01 15:48:25 +00:00
h4= env.t('featureSocialHeading')
2015-04-02 17:32:49 +00:00
p
2015-05-01 15:48:25 +00:00
= env.t('featureSocialByline')
2015-05-01 14:44:19 +00:00
button.btn.btn-primary.btn-lg.fixedcta.gamifybutton(ng-click='playButtonClick()')= env.t('gamifyButton')
2015-04-02 17:32:49 +00:00
#footercall
.container-fluid
.row
.col-md-10
2015-05-01 15:48:25 +00:00
h3= env.t('joinOthers')
2015-04-02 17:32:49 +00:00
.row
.col-md-4.col-md-offset-4
2015-05-01 15:48:25 +00:00
button.btn.btn-primary.btn-lg.btn-block(ng-click='playButtonClick()')= env.t('free')
2015-04-02 17:32:49 +00:00
footer.footer
.container-fluid.shoutout
2015-05-01 15:48:25 +00:00
h4= env.t('contribUse')
2015-04-02 17:32:49 +00:00
.row
.col-lg-2.col-md-2.col-md-offset-1.col-sm-4.col-sm-offset-1.col-xs-6.col-xs-offset-1
a(href='http://ionicframework.com/')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/ionic-logo-horizontal-transparent.png')
2015-04-02 17:32:49 +00:00
.col-lg-2.col-lg-offset-0.col-md-2.col-md-offset-0.col-sm-4.col-sm-offset-1.col-xs-6.col-xs-offset-1
a(href='https://www.jetbrains.com/webstorm/')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/logo_webstorm.png')
2015-04-02 17:32:49 +00:00
.col-lg-2.col-lg-offset-0.col-md-2.col-md-offset-0.col-sm-4.col-sm-offset-1.col-xs-6.col-xs-offset-1
a(href='http://github.com/')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/GitHub_Logo.png')
2015-04-02 17:32:49 +00:00
.col-lg-2.col-lg-offset-0.col-md-2.col-md-offset-0.col-sm-4.col-sm-offset-1.col-xs-6.col-xs-offset-1
a(href='https://trello.com/')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/trello-logo-blue.png')
2015-04-02 17:32:49 +00:00
.col-lg-2.col-lg-offset-0.col-md-2.col-md-offset-0.col-sm-4.col-sm-offset-1.col-xs-6.col-xs-offset-1
a(href='https://slack.com/')
2015-08-30 22:52:16 +00:00
img.img-rendering-auto.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/presslogos/landing_slack_hash_wordmark_logo.png')
2015-04-02 23:22:36 +00:00
2015-04-02 17:32:49 +00:00
.row.footer-content
2015-04-02 23:22:36 +00:00
include ../shared/footer
2015-04-02 17:32:49 +00:00
// Footer scripts
// Use carousel initialize
script(type='text/javascript').
$(document).ready( function() {
2015-04-03 18:48:36 +00:00
var clickEvent = false;
$('#myCarousel').on('click', '.nav a', function() {
clickEvent = true;
$('#myCarousel .nav li').removeClass('active');
$(this).parent().addClass('active');
}).on('slid.bs.carousel', function(e) {
if(!clickEvent) {
var count = $('#myCarousel .nav').children().length -1;
var current = $('#myCarousel .nav li.active');
current.removeClass('active').next().addClass('active');
var id = parseInt(current.data('slide-to'));
if(count == id) {
$('#myCarousel .nav li').first().addClass('active');
}
}
clickEvent = false;
});
2015-04-02 17:32:49 +00:00
});
// Tooltips
script(type='text/javascript').
$(function () {
2015-04-03 18:48:36 +00:00
$('[data-toggle="tooltip"]').tooltip()
$('[data-toggle="popover"]').popover()
2015-04-02 17:32:49 +00:00
})
// Hack fix for carousel (http://stackoverflow.com/a/22182184/362790)
script.
angular.module('ui.bootstrap.carousel', ['ui.bootstrap.transition'])
.controller('CarouselController', ['$scope', '$timeout', '$transition', '$q', function ($scope, $timeout, $transition, $q) {
}]).directive('carousel', [function () {
return {}
2015-04-14 13:11:39 +00:00
}]);
2015-05-16 03:31:47 +00:00