mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-08-03 08:21:07 +00:00
WIP(sharing): Incomplete landing page
First stab at creating landing pages for inbound social traffic. May need a different solution.
This commit is contained in:
parent
5d3f41637f
commit
0c5e520e6f
3 changed files with 43 additions and 2 deletions
|
|
@ -179,5 +179,9 @@
|
|||
"businessInquiries": "Business Inquiries",
|
||||
"merchandiseInquiries": "Merchandise Inquiries",
|
||||
"marketingInquiries": "Marketing/Social Media Inquiries",
|
||||
"tweet": "Tweet"
|
||||
"tweet": "Tweet",
|
||||
"imagine1": "Imagine if improving your life was as fun as playing a game.",
|
||||
"landingCopy1": "Advance in the game by completing your real-life tasks.",
|
||||
"landingCopy2": "Battle monsters with friends to stay accountable to your goals.",
|
||||
"landingCopy3": "Join over 300,000 people having fun as they improve their lives."
|
||||
}
|
||||
|
|
|
|||
25
website/views/social/landing-page.jade
Normal file
25
website/views/social/landing-page.jade
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
body(ng-controller='AuthCtrl').text-center
|
||||
h1=env.t('imagine1')
|
||||
ul
|
||||
li=env.t('landingCopy1')
|
||||
li=env.t('landingCopy2')
|
||||
li=env.t('landingCopy3')
|
||||
.container-fluid
|
||||
.row
|
||||
.col-md-6
|
||||
img.img-rendering-auto.center-block.img-responsive(src='https://d2afqr2xdmyzvu.cloudfront.net/front/images/intro.png')
|
||||
.col-md-6
|
||||
p Login form here
|
||||
button.btn.btn-primary.btn-lg Get Started Now!
|
||||
a I already have an account!
|
||||
.row
|
||||
.presslogos
|
||||
=env.t('featuredIn')
|
||||
br
|
||||
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')
|
||||
|
|
@ -1,6 +1,12 @@
|
|||
doctype html
|
||||
html
|
||||
html(ng-app='habitrpg')
|
||||
head
|
||||
meta(charset='utf-8')
|
||||
link(href='//fonts.googleapis.com/css?family=Lato:400,700', rel='stylesheet', type='text/css')
|
||||
title Habitica | Your Life the Role Playing Game
|
||||
script(type='text/javascript').
|
||||
window.env = !{JSON.stringify(env._.pick(env, env.clientVars))};
|
||||
!= env.getManifestFiles("tmp_static_front")
|
||||
meta(name='twitter:card' content='summary')
|
||||
meta(name='twitter:site' content='@habitica')
|
||||
meta(name='twitter:title' content='Level Up!')
|
||||
|
|
@ -13,3 +19,9 @@ html
|
|||
meta(property='og:site_name', content='Habitica')
|
||||
meta(property='og:image', content='https://s3.amazonaws.com/habitica-assets/assets/gryphon_logo_300x300.png')
|
||||
meta(property='fb:app_id', content='128307497299777')
|
||||
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')
|
||||
link(rel='stylesheet', type='text/css', href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css')
|
||||
|
||||
include ./landing-page
|
||||
|
|
|
|||
Loading…
Reference in a new issue