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

24 lines
713 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="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>