footer_nav.html 3.4 KB
Newer Older
G
gongfuxiang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
{{if MyC('common_is_app_inside_close_header') neq 1 or !in_array(MiniAppEnv(), config('shopxo.mini_app_type_list'))}}
	<!-- 友情链接 -->
	{{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>
D
devil_gong 已提交
15
		</div>
G
gongfuxiang 已提交
16
	{{/if}}
D
devil_gong 已提交
17 18
{{/if}}

D
devil_gong 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31
<!-- 底部导航上面钩子 -->
{{if isset($shopxo_is_develop) and $shopxo_is_develop eq true and (!isset($is_footer) or $is_footer eq 1)}}
    <div class="plugins-tag">
        <span>plugins_view_common_footer_top</span>
    </div>
{{/if}}
{{if !empty($plugins_view_common_footer_top_data) and is_array($plugins_view_common_footer_top_data)}}
    {{foreach $plugins_view_common_footer_top_data as $hook}}
        {{if is_string($hook) or is_int($hook)}}
            {{$hook|raw}}
        {{/if}}
    {{/foreach}}
{{/if}}
G
gongfuxiang 已提交
32 33


G
gongfuxiang 已提交
34 35 36
{{if MyC('common_is_app_inside_close_header') neq 1 or !in_array(MiniAppEnv(), config('shopxo.mini_app_type_list'))}}
	<!-- 底部导航 -->
	<footer data-am-widget="footer" class="am-footer am-footer-default" data-am-footer="{}">
D
1.5  
devil_gong 已提交
37
		<div class="am-container">
G
gongfuxiang 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
			<!-- 底部导航 -->
			{{if !empty($nav_footer)}}
				<ul data-am-widget="gallery" class="am-gallery am-avg-sm-2 am-avg-md-4 am-avg-lg-4 am-gallery-overlay am-no-layout am-u-md-8 footer-nav-list" data-am-gallery="{}">
					{{foreach $nav_footer as $k=>$v}}
						{{if $k lt 4}}
							<li>
								<div class="am-gallery-item">
									<p class="footer-nav-title am-text-truncate">{{$v.name}}</p>
									{{if !empty($v['items'])}}
										{{foreach $v.items as $vs}}
											<p class="am-text-truncate">
												<a href="{{$vs.url}}" {{if $vs['is_new_window_open'] eq 1}}target="_blank"{{/if}}>{{$vs.name}}</a>
											</p>
										{{/foreach}}
									{{/if}}
								</div>
							</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 class="powered">
					Powered by <a href="http://shopxo.net/" title="ShopXO电商系统" target="_blank">
						<span class="b">Shop</span><span class="o">XO</span>
					</a> {{$Think.APPLICATION_VERSION}}
				</p>
				<p>
					<a href="http://www.beian.miit.gov.cn/" target="_blank">{{:MyC('home_site_icp')}}</a>
				</p>
			</div>
D
1.5  
devil_gong 已提交
99
		</div>
G
gongfuxiang 已提交
100 101 102 103 104
	</footer>
{{else /}}
	<!-- 保留标签,兼容mobile导航样式 -->
	<footer class="am-footer"></footer>
{{/if}}