2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/header')}}
2020-07-13 13:33:55 +00:00
2020-11-21 08:42:35 +00:00
<!-- right content start -->
< div class = "content-right" >
< div class = "content" >
<!-- list start -->
{{if !empty($data_list)}}
< 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/appmini/themesave')}}" data-nav-type = "{{$nav_type}}" >
{{foreach $data_list as $v}}
< li id = "data-list-{{$v.theme}}" >
< div class = "am-gallery-item am-radius am-padding-0 {{if $v['theme'] eq $theme}}theme-active{{/if}}" >
< a href = "javascript:;" class = "select-theme am-block" data-theme = "{{$v.theme}}" >
< img src = "{{$v.preview}}" alt = "{{$v.name}}" class = "am-block" / >
< / a >
< div class = "am-gallery-item-bottom am-padding-sm" >
< h3 class = "am-gallery-title am-margin-top-0" >
{{$v.name}}
< div class = "am-fr am-text-right" >
2023-08-27 08:59:15 +00:00
{{if !empty($upgrade_info) and isset($upgrade_info[$v['theme']]) and isset($upgrade_info[$v['theme']]['version_new']) and version_compare($upgrade_info[$v['theme']]['version_new'], $v['ver'], '>')}}
2023-01-29 10:11:08 +00:00
< a href = "javascript:;" class = "am-icon-refresh am-text-danger package-upgrade-event" title = "{{:MyLang('update_title')}}" data-type = "minitheme" data-name = "{{$v.name}}" data-value = "{{$v.theme}}" data-terminal = "{{$nav_type}}" data-json = "{{:urlencode(json_encode($upgrade_info[$v['theme']]))}}" > < / a >
2021-04-23 08:43:23 +00:00
{{/if}}
2020-11-21 08:42:35 +00:00
{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true}}
2024-07-03 14:46:04 +00:00
< a href = "{{:MyUrl('admin/appmini/themedownload', ['id'=>$v['theme'], 'nav_type'=>$nav_type])}}" class = "iconfont icon-delete am-icon-download am-margin-left-sm" title = "{{:MyLang('download_title')}}" > < / a >
2020-11-21 08:42:35 +00:00
{{/if}}
{{if $v.is_delete eq 1}}
2024-07-03 14:46:04 +00:00
< a href = "javascript:;" class = "iconfont icon-delete submit-delete am-margin-left-sm am-text-warning" title = "{{:MyLang('delete_title')}}" data-url = "{{:MyUrl('admin/appmini/themedelete', ['nav_type'=>$nav_type])}}" data-id = "{{$v.theme}}" > < / a >
2020-11-21 08:42:35 +00:00
{{/if}}
< / div >
< / h3 >
2023-02-13 09:55:04 +00:00
< div class = "am-gallery-desc" > {{:MyLang('appmini.list_author_title')}}:
2020-11-21 08:42:35 +00:00
{{if empty($v['home'])}}
{{$v.author}}
{{else /}}
< a href = "{{$v.home}}" target = "_blank" > {{$v.author}}< / a >
{{/if}}
< / div >
2023-02-13 09:55:04 +00:00
< div class = "am-gallery-desc" > {{:MyLang('appmini.list_version_title')}}: {{$v.ver}}< / div >
2020-11-21 08:42:35 +00:00
< / div >
< / div >
< / li >
{{/foreach}}
< ul >
2020-08-15 09:58:22 +00:00
{{else /}}
2022-04-20 02:14:13 +00:00
< div class = "table-no" >
2023-01-29 10:11:08 +00:00
< i class = "am-icon-skyatlas am-icon-lg" > < / i >
< p > {{:MyLang('appmini.list_no_data_tips')}}< / p >
2022-04-20 02:14:13 +00:00
< / div >
2020-08-15 09:58:22 +00:00
{{/if}}
2020-11-21 08:42:35 +00:00
<!-- lis end -->
2020-08-15 09:58:22 +00:00
< / div >
2020-11-21 08:42:35 +00:00
< / div >
<!-- right content end -->
2020-07-13 13:33:55 +00:00
2020-11-21 08:42:35 +00:00
<!-- footer start -->
2024-04-15 02:25:01 +00:00
{{:ModuleInclude('public/footer')}}