ORIENT/modules/cms/controllers/themes/_theme_list.htm

31 lines
979 B
HTML
Raw Normal View History

2014-07-19 02:05:50 +00:00
<?php
$themes = Cms\Classes\Theme::all();
2014-10-18 03:32:06 +00:00
?>
<?php foreach ($themes as $index => $theme): ?>
<div id="themeListItem-<?= $theme->getId() ?>" class="layout-row min-size <?= $theme->isActiveTheme() ? 'active' : null ?>">
<?= $this->makePartial('theme_list_item', ['theme' => $theme]) ?>
2014-07-19 02:05:50 +00:00
</div>
2014-07-19 02:05:50 +00:00
<?php endforeach ?>
2014-10-18 03:32:06 +00:00
2014-07-19 02:05:50 +00:00
<div class="layout-row links">
<div class="layout-cell theme-thumbnail">
2014-10-18 03:32:06 +00:00
<!-- Spacer -->
2014-07-19 02:05:50 +00:00
</div>
<div class="layout-cell theme-description">
<a
class="create-new-theme"
data-control="popup"
data-handler="onLoadCreateForm"
data-size="huge"
href="javascript:;">
2015-03-16 08:33:58 +00:00
<?= e(trans('cms::lang.theme.create_new_blank_theme')) ?>
</a>
<a
class="find-more-themes"
href="<?= Backend::url('system/updates/install/themes') ?>">
<?= e(trans('cms::lang.theme.find_more_themes')) ?>
</a>
2014-07-19 02:05:50 +00:00
</div>
</div>