2015-01-08 20:41:23 +00:00
|
|
|
extends ./layout
|
|
|
|
|
|
|
|
|
|
block vars
|
|
|
|
|
- var layoutEnv = env
|
|
|
|
|
- var menuItem = 'pressKit'
|
|
|
|
|
|
|
|
|
|
block title
|
2015-05-03 18:11:42 +00:00
|
|
|
title= env.t('presskit')
|
2015-01-08 20:41:23 +00:00
|
|
|
|
|
|
|
|
block extraHead
|
|
|
|
|
style.
|
|
|
|
|
.press-img {
|
|
|
|
|
max-width: 500px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
block content
|
2015-01-29 21:28:57 +00:00
|
|
|
h2= env.t('presskit')
|
|
|
|
|
p= env.t('presskitText')
|
|
|
|
|
p= env.t('presskitDownload')
|
2015-01-29 23:20:15 +00:00
|
|
|
|
|
2015-01-29 21:28:57 +00:00
|
|
|
a.btn.btn-success(href='/presskit/presskit.zip') presskit.zip
|
2015-10-29 13:07:06 +00:00
|
|
|
- var imgs = ['Habitica Text Logo', 'Habitica Logo Promo', 'Habitica Gryphon', 'Dread Drag\'on of Dilatory', 'Market Sample Screen', 'Challenges Sample Screen', 'Equipment Sample Screen', 'Guilds Sample Screen', 'HabiticaPromoThin', 'Laundromancer', 'Tasks Page', 'SnackLess Monster', 'Battling the Ghost Stag', 'Stagnant Dishes Boss', 'Necro-Vice']
|
2015-01-08 20:41:23 +00:00
|
|
|
|
|
|
|
|
//-#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')
|
2015-01-29 23:20:15 +00:00
|
|
|
span.sr-only= env.t('previous')
|
2015-01-08 20:41:23 +00:00
|
|
|
a.right.carousel-control(href='#carousel', role='button', data-slide='next')
|
|
|
|
|
span.glyphicon.glyphicon-chevron-right(aria-hidden='true')
|
2015-01-29 23:20:15 +00:00
|
|
|
span.sr-only= env.t('next')
|
2015-01-08 20:41:23 +00:00
|
|
|
|
|
|
|
|
ul.list-unstyled
|
|
|
|
|
each img in imgs
|
|
|
|
|
li
|
2015-08-30 22:52:16 +00:00
|
|
|
img.img-rendering-auto.press-img(src="/presskit/#{img}.png")
|