feat(presskit): add presskit page cc @lemoness

This commit is contained in:
Tyler Renelle 2015-01-08 13:41:23 -07:00
parent 6626103d06
commit cba232ef83
20 changed files with 44 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 169 KiB

BIN
public/presskit/PROMOdevices2.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

View file

@ -20,7 +20,7 @@ router.get('/', i18n.getUserLanguage, middleware.locals, function(req, res) {
// -------- Marketing --------
var pages = ['front', 'privacy', 'terms', 'api', 'features', 'videos', 'contact', 'plans', 'new-stuff', 'community-guidelines', 'old-news'];
var pages = ['front', 'privacy', 'terms', 'api', 'features', 'videos', 'contact', 'plans', 'new-stuff', 'community-guidelines', 'old-news', 'press-kit'];
_.each(pages, function(name){
router.get('/static/' + name, i18n.getUserLanguage, middleware.locals, function(req, res) {

View file

@ -39,6 +39,8 @@ html(ng-app='habitrpgStatic')
a(href='http://blog.habitrpg.com/')=env.t('companyBlog')
li(class='#{menuItem=="plans" ? "active" : ""}')
a(href='/static/plans')=env.t('groupPlans')
li(class='#{menuItem=="pressKit" ? "active" : ""}')
a(href='/static/press-kit') Press Kit
li(class='#{menuItem=="contact" ? "active" : ""}')
a(href='/static/contact')=env.t('contactUs')

View file

@ -0,0 +1,41 @@
extends ./layout
block vars
- var layoutEnv = env
- var menuItem = 'pressKit'
block title
title Press Kit
block extraHead
style.
.press-img {
max-width: 500px;
}
block content
h2 Press Kit
p Thanks for your interest in HabitRPG! The following images can be used for articles or videos about HabitRPG. For more information, please contact Siena Leslie at leslie@habitrpg.com.
p Download all image: <a class='btn btn-success' href='/presskit/presskit.zip'>presskit.zip</a>
- var imgs = ['habitrpg_pixel', 'HabitRPGdevices', 'Market Sample Screen', 'Challenges Sample Screen', 'Equipment Sample Screen', 'Guilds Sample Screen', 'HabitRPGPromoPostCard6', 'HabitRPGPromoThin', 'Laundromancer_by_Arcosine', 'promo mobile inventorySTILL1', 'promo mobile inventorySTILL2', 'PROMOdevices2', 'SnackLessMonster_by_Arcosine', 'stag_battle_by_leephon', 'stagnant_dishes_by_kiwibot', 'vice_reborn_by_baconsaur']
//-#carousel.carousel.slide(data-ride='carousel')
ol.carousel-indicators
each img, i in imgs
li(class=i==0?'active':'', data-target='#carousel', data-slide-to=i)
.carousel-inner(role='listbox')
each img, i in imgs
.item(class=i==0?'active':'')
img(src="/presskit/#{img}.png")
//.carousel-caption=img
a.left.carousel-control(href='#carousel', role='button', data-slide='prev')
span.glyphicon.glyphicon-chevron-left(aria-hidden='true')
span.sr-only Previous
a.right.carousel-control(href='#carousel', role='button', data-slide='next')
span.glyphicon.glyphicon-chevron-right(aria-hidden='true')
span.sr-only Next
ul.list-unstyled
each img in imgs
li
img.press-img(src="/presskit/#{img}.png")