2016-10-31 22:36:51 +01:00
|
|
|
<template name="themeSelectorModal">
|
2017-03-03 15:05:53 +01:00
|
|
|
{{#dialogForm (extend this
|
2018-07-04 17:40:03 +02:00
|
|
|
id='themeSelectorModal' dialogClass='themed modal-lg' confirmLabel='Apply theme'
|
2017-03-03 15:05:53 +01:00
|
|
|
title='Themes' titleIcon='fa fa-sliders'
|
|
|
|
|
)}}
|
|
|
|
|
<ul class="theme-list text-center">
|
|
|
|
|
{{#each theme in themes}}
|
|
|
|
|
<li class="text-center preview-theme {{printClassIfSelected theme}}" data-theme="{{theme}}">
|
|
|
|
|
<div class="icon-wrapper">
|
|
|
|
|
<span class="theme-icon-{{theme}}"></span>
|
|
|
|
|
</div>
|
|
|
|
|
<h4 class="theme-title">{{ucFirst theme}}</h4>
|
|
|
|
|
</li>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</ul>
|
|
|
|
|
{{/dialogForm}}
|
2016-10-31 22:36:51 +01:00
|
|
|
</template>
|