habitica/website/views/static/press-kit.jade

71 lines
2 KiB
Text
Raw Normal View History

extends ./layout
block vars
- var layoutEnv = env
- var menuItem = 'pressKit'
block title
title= env.t('presskit')
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
2016-03-06 22:02:51 +00:00
-
var imgs = [
'Habitica Promo',
'Habitica Promo - Thin',
'Habitica Logo - Icon with Text',
'Habitica Logo - Text',
'Habitica Logo - Icon',
'Habitica Logo - iOS',
'Habitica Logo - Android',
'Habitica Gryphon',
'Boss - Basi-List',
'Boss - Stagnant Dishes',
'Boss - SnackLess Monster',
'Boss - Laundromancer',
'Boss - Battling the Ghost Stag',
'Boss - Necro-Vice',
'World Boss - Dread Drag\'on of Dilatory',
'Sample Screen - Tasks Page',
'Sample Screen - Market',
'Sample Screen - Equipment',
'Sample Screen - Guilds',
'Sample Screen - Challenges',
'Sample Screen - Tasks Page (iOS)',
'Sample Screen - Level Up (iOS)',
'Sample Screen - Pets (iOS)',
'Sample Screen - Party (iOS)',
'Sample Screen - Boss (iOS)'
]
//-#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')
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')
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")