82 lines
2.4 KiB
HTML
Executable File
82 lines
2.4 KiB
HTML
Executable File
<!-- 友情链接 -->
|
|
{{if !empty($link_list)}}
|
|
<div class="friendship-list">
|
|
<div class="am-container">
|
|
<h2>友情链接</h2>
|
|
<ul>
|
|
{{foreach $link_list as $v}}
|
|
<li>
|
|
<a href="{{$v.url}}" {{if $v['is_new_window_open'] eq 1}} target="_blank"{{/if}} title="{{$v.describe}}">{{$v.name}}</a>
|
|
</li>
|
|
{{/foreach}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<!-- 底部导航 -->
|
|
<footer data-am-widget="footer" class="am-footer am-footer-default" data-am-footer="{}">
|
|
<div class="am-container">
|
|
<!-- 底部导航 -->
|
|
{{if !empty($nav_footer)}}
|
|
<ul class="footer-nav-list am-u-md-8">
|
|
{{foreach $nav_footer as $k=>$v}}
|
|
{{if $k lt 4}}
|
|
<li class="am-fl">
|
|
<p class="footer-nav-title ellipsis">{{$v.name}}</p>
|
|
{{if !empty($v['items'])}}
|
|
{{foreach $v.items as $vs}}
|
|
<p class="ellipsis">
|
|
<a href="{{$vs.url}}" {{if $vs['is_new_window_open'] eq 1}}target="_blank"{{/if}}>{{$vs.name}}</a>
|
|
</p>
|
|
{{/foreach}}
|
|
{{/if}}
|
|
</li>
|
|
{{/if}}
|
|
{{/foreach}}
|
|
</ul>
|
|
{{/if}}
|
|
|
|
<!-- 商店信息 -->
|
|
<ul class="footer-about am-u-md-4">
|
|
{{if !empty($common_customer_store_tel)}}
|
|
<li class="tel">
|
|
<i class="am-icon-volume-control-phone"></i>
|
|
<a href="tel:{{$common_customer_store_tel}}">{{$common_customer_store_tel}}</a>
|
|
</li>
|
|
{{/if}}
|
|
{{if !empty($common_customer_store_address)}}
|
|
<li class="address">
|
|
<i class="am-icon-map-marker"></i>
|
|
<span>{{$common_customer_store_address}}</span>
|
|
</li>
|
|
{{/if}}
|
|
{{if !empty($common_customer_store_email)}}
|
|
<li class="email">
|
|
<i class="am-icon-envelope"></i>
|
|
<span>{{$common_customer_store_email}}</span>
|
|
</li>
|
|
{{/if}}
|
|
{{if !empty($common_customer_store_qrcode)}}
|
|
<li class="qrcode">
|
|
<img src="{{$attachment_host}}{{$common_customer_store_qrcode}}" alt="{{:MyC('home_seo_site_title')}}" />
|
|
</li>
|
|
{{/if}}
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="am-footer-miscs">
|
|
<div class="am-container">
|
|
<p>
|
|
<script>
|
|
<!--
|
|
document.write(unescape("Powered%20by%20%3Ca%20href%3D%22http%3A//shopxo.net/%22%20title%3D%22ShopXO%u7535%u5546%u7CFB%u7EDF%22%20target%3D%22_blank%22%3EShopXO%3C/a%3E%20"));
|
|
//-->
|
|
</script> {{$Think.APPLICATION_VERSION}}
|
|
</p>
|
|
<p>
|
|
<a href="http://www.miitbeian.gov.cn/" target="_blank">{{:MyC('home_site_icp')}}</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer> |