1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- use yii\helpers\Url;
- \common\modules\theme\backend\assets\ThemeAsset::register($this);
- /* @var $theme \frontend\themes\Theme */
- $this->title = '主题';
- $this->params['breadcrumbs'][] = $this->title;
- ?>
- <?php $this->beginBlock('content-header'); ?>
- <h1>
- <?= $this->title?>
- <a class="btn btn-success " href="<?= Url::to(['upload']) ?>">上传新主题</a>
- </h1>
- <?php $this->endBlock(); ?>
- <?php foreach ($dataProvider->getModels() as $theme):?>
- <div class="col-md-3">
- <div class="theme <?= $theme->isActive()?"active":"";?>">
- <?php $screenshot = $theme->getScreenshot();if(!empty($screenshot)):?>
- <div class="theme-screenshot">
- <a href="<?= Url::to(["view","id"=>$theme->getPackage()])?>"> <img
- src="<?= $screenshot ?>" alt="" /> <span
- class="more-details">主题详情</span>
- </a>
- </div>
- <?php else :?>
- <div class="theme-screenshot blank">
- <a href="<?= Url::to(["view","id"=>$theme->getPackage()])?>"> <span
- class="more-details">主题详情</span>
- </a>
- </div>
- <?php endif;?>
- <h3 class="theme-name">
- <span><?= $theme->isActive() ? "默认:" : "";?></span><?= $theme->getName()?>
- </h3>
- <div class="theme-actions">
- <?php if( $theme->isActive() == true):?>
- <a class="btn bg-maroon btn-flat btn-sm"
- href="<?= Url::to(["custom","id"=>$theme->getPackage()])?>"> 自定义 </a>
- <?php else:?>
- <a class="btn bg-purple btn-flat btn-sm"
- href="<?= Url::to(["open","id" => $theme->getPackage(), ['data-method' => 'post']])?>">启用</a>
- <a class="btn bg-maroon btn-flat btn-sm"
- href="<?= Url::to(["demo","id"=>$theme->getPackage()])?>"
- target="_blank"> 预览 </a>
- <?php endif;?>
- </div>
- </div>
- </div>
- <?php endforeach;?>
|