31 lines
979 B
HTML
31 lines
979 B
HTML
<?php
|
|
$themes = Cms\Classes\Theme::all();
|
|
?>
|
|
<?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]) ?>
|
|
</div>
|
|
|
|
<?php endforeach ?>
|
|
|
|
<div class="layout-row links">
|
|
<div class="layout-cell theme-thumbnail">
|
|
<!-- Spacer -->
|
|
</div>
|
|
<div class="layout-cell theme-description">
|
|
<a
|
|
class="create-new-theme"
|
|
data-control="popup"
|
|
data-handler="onLoadCreateForm"
|
|
data-size="huge"
|
|
href="javascript:;">
|
|
<?= 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>
|
|
</div>
|
|
</div> |