mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-28 22:05:38 +00:00
41 lines
1.7 KiB
Text
41 lines
1.7 KiB
Text
|
|
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")
|