2013-09-06 17:50:14 +00:00
|
|
|
//Trick needed to pass 'env' to ./layout
|
|
|
|
|
block vars
|
2013-09-01 16:56:43 +00:00
|
|
|
doctype 5
|
|
|
|
|
html
|
|
|
|
|
|
|
|
|
|
head
|
|
|
|
|
block title
|
2013-12-30 02:14:55 +00:00
|
|
|
title=env.t('titleIndex')
|
2013-09-01 16:56:43 +00:00
|
|
|
|
2014-01-29 17:26:58 +00:00
|
|
|
link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=3')
|
2013-09-07 11:55:48 +00:00
|
|
|
|
2013-09-01 16:56:43 +00:00
|
|
|
meta(charset='utf-8')
|
|
|
|
|
meta(name='viewport', content='width=device-width, initial-scale=1.0')
|
2013-09-02 05:08:28 +00:00
|
|
|
|
2013-11-04 21:11:45 +00:00
|
|
|
!= env.getManifestFiles("static")
|
2013-09-06 17:19:43 +00:00
|
|
|
|
2013-09-01 16:56:43 +00:00
|
|
|
body
|
2014-01-28 01:16:12 +00:00
|
|
|
div(ng-app='habitrpgStatic',ng-controller='AuthCtrl',style='margin-top:60px;')
|
|
|
|
|
include ./login-modal
|
2014-01-29 17:26:58 +00:00
|
|
|
nav.navbar.navbar-inverse.navbar-fixed-top
|
|
|
|
|
.navbar-header
|
|
|
|
|
button.navbar-toggle(type='button', ng-click='isNavbarCollapsed = !isNavbarCollapsed', ng-init='isNavbarCollapsed = true')
|
|
|
|
|
span.sr-only Toggle navigation
|
|
|
|
|
span.icon-bar
|
|
|
|
|
span.icon-bar
|
|
|
|
|
span.icon-bar
|
|
|
|
|
a.navbar-brand(href='/static/front') HabitRPG
|
|
|
|
|
.collapse.navbar-collapse(collapse="isNavbarCollapsed")
|
|
|
|
|
ul.nav.navbar-nav
|
|
|
|
|
li(class='#{menuItem=="about" ? "active" : ""}')
|
|
|
|
|
a(href='/static/about') Learn More
|
|
|
|
|
li
|
|
|
|
|
a(href='http://blog.habitrpg.com/') Blog
|
|
|
|
|
li(class='#{menuItem=="plans" ? "active" : ""}')
|
|
|
|
|
a(href='/static/plans') Plans
|
|
|
|
|
//li(class='#{menuItem=="contact" ? "active" : ""}')
|
|
|
|
|
a(href='/static/contact') Contact
|
|
|
|
|
|
|
|
|
|
button#header-play-button.btn.btn-primary.navbar-btn.navbar-right(ng-click='playButtonClick()')=env.t('playButton')
|
2014-01-28 02:24:24 +00:00
|
|
|
|
2014-01-28 01:16:12 +00:00
|
|
|
.container
|
|
|
|
|
block content
|
2013-09-01 16:56:43 +00:00
|
|
|
|
|
|
|
|
include ../shared/footer
|