feat(presskit): add presskit page cc @lemoness
BIN
public/presskit/Challenges Sample Screen.png
Executable file
|
After Width: | Height: | Size: 54 KiB |
BIN
public/presskit/Equipment Sample Screen.png
Executable file
|
After Width: | Height: | Size: 32 KiB |
BIN
public/presskit/Guilds Sample Screen.png
Executable file
|
After Width: | Height: | Size: 171 KiB |
BIN
public/presskit/HabitRPGPromoPostCard6.png
Executable file
|
After Width: | Height: | Size: 495 KiB |
BIN
public/presskit/HabitRPGPromoThin.png
Executable file
|
After Width: | Height: | Size: 28 KiB |
BIN
public/presskit/HabitRPGdevices.png
Executable file
|
After Width: | Height: | Size: 197 KiB |
BIN
public/presskit/Laundromancer_by_Arcosine.png
Executable file
|
After Width: | Height: | Size: 7.1 KiB |
BIN
public/presskit/Market Sample Screen.png
Executable file
|
After Width: | Height: | Size: 169 KiB |
BIN
public/presskit/PROMOdevices2.png
Executable file
|
After Width: | Height: | Size: 53 KiB |
BIN
public/presskit/SnackLessMonster_by_Arcosine.png
Executable file
|
After Width: | Height: | Size: 5.7 KiB |
BIN
public/presskit/habitrpg_pixel.png
Executable file
|
After Width: | Height: | Size: 7.2 KiB |
BIN
public/presskit/presskit.zip
Normal file
BIN
public/presskit/promo mobile inventorySTILL1.png
Executable file
|
After Width: | Height: | Size: 71 KiB |
BIN
public/presskit/promo mobile inventorySTILL2.png
Executable file
|
After Width: | Height: | Size: 56 KiB |
BIN
public/presskit/stag_battle_by_leephon.png
Executable file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/presskit/stagnant_dishes_by_kiwibot.png
Executable file
|
After Width: | Height: | Size: 27 KiB |
BIN
public/presskit/vice_reborn_by_baconsaur.png
Executable file
|
After Width: | Height: | Size: 7.7 KiB |
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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')
|
||||
|
||||
|
|
|
|||
41
views/static/press-kit.jade
Normal 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")
|
||||