vr-shopxo-source/application/admin/view/default/theme/index.html

49 lines
1.6 KiB
HTML
Raw Normal View History

2018-12-15 05:31:42 +00:00
{{include file="public/header" /}}
<!-- right content start -->
<div class="content-right">
<div class="content">
<!-- nav start -->
2018-12-18 10:32:27 +00:00
{{include file="theme/nav" /}}
2018-12-15 05:31:42 +00:00
<!-- nav end -->
<!-- list start -->
2018-12-18 10:32:27 +00:00
{{if !empty($data_list)}}
2018-12-26 08:09:08 +00:00
<ul data-am-widget="gallery" class="am-gallery am-avg-sm-2 am-avg-md-3 am-avg-lg-4 am-gallery-bordered data-list" data-am-gallery="{}" data-select-url="{{:MyUrl('admin/theme/save')}}">
2018-12-18 10:32:27 +00:00
{{foreach $data_list as $v}}
2018-12-15 05:31:42 +00:00
<li id="data-list-{{$v.theme}}">
2018-12-18 10:32:27 +00:00
<div class="am-gallery-item am-radius {{if $v['theme'] eq $theme}}theme-active{{/if}}">
2018-12-15 05:31:42 +00:00
<a href="javascript:;" class="select-theme" data-theme="{{$v.theme}}">
<img src="{{$v.preview}}" alt="{{$v.name}}" />
</a>
<div class="am-gallery-item-bottom">
<h3 class="am-gallery-title">
{{$v.name}}
2018-12-18 17:11:01 +00:00
{{if $v.is_delete eq 1}}
2018-12-26 08:09:08 +00:00
<a href="javascript:;" class="am-icon-trash-o fr submit-delete" data-url="{{:MyUrl('admin/theme/delete')}}" data-id="{{$v.theme}}"></a>
2018-12-18 17:11:01 +00:00
{{/if}}
2018-12-15 05:31:42 +00:00
</h3>
2018-12-18 03:10:53 +00:00
<div class="am-gallery-desc">作者:
2018-12-15 05:31:42 +00:00
{{if empty($v['home'])}}
{{$v.author}}
{{else /}}
<a href="{{$v.home}}" target="_blank">{{$v.author}}</a>
{{/if}}
</div>
2018-12-18 03:10:53 +00:00
<div class="am-gallery-desc">适用版本:{{$v.ver}}</div>
2018-12-15 05:31:42 +00:00
</div>
</div>
</li>
{{/foreach}}
<ul>
{{else /}}
2018-12-17 10:50:26 +00:00
<div class="table-no">没有相关数据</div>
2018-12-15 05:31:42 +00:00
{{/if}}
<!-- lis end -->
</div>
</div>
<!-- right content end -->
<!-- footer start -->
{{include file="public/footer" /}}
<!-- footer end -->