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): ?>
|
2015-03-14 07:09:54 +00:00
|
|
|
|
|
|
|
|
<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>
|
2015-03-14 07:09:54 +00:00
|
|
|
|
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">
|
2015-03-14 07:09:54 +00:00
|
|
|
<a
|
|
|
|
|
class="find-more-themes"
|
|
|
|
|
href="http://octobercms.com/themes"
|
|
|
|
|
target="_blank">
|
|
|
|
|
<?= e(trans('cms::lang.theme.find_more_themes')) ?>
|
|
|
|
|
</a>
|
2014-07-19 02:05:50 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|