Files
new_ine/resources/views/layouts/footer.blade.php
2021-11-26 16:13:15 +08:00

74 lines
2.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 友情链接 -->
<div class="Link">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-12">
<ul class="linkUl">
@if ($links->isNotEmpty())
@foreach ($links as $link)
<li><a href="{{ $link->url }}" target="_blank">{{ $link->title }}</a></li>
@endforeach
@endif
</ul>
</div>
</div>
</div>
</div>
<!-- 底部 -->
<footer class="Footer">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-12">
<ul class="Footer-nav">
<li data-href="">首页</li>
@foreach ($all_categorys as $cate)
<li data-href="">{{ $cate->title }}</li>
@endforeach
</ul>
<ul class="Footer-tips">
<div class="Footer-tips-label">
<span>地址:{{ config('address') }}</span>
</div>
<div class="Footer-tips-label">
<span>邮件:{{ config('email') }}</span>
<span>邮编:{{ config('postcode') }}</span>
</div>
<div class="Footer-tips-label">
<span>电话:{{ config('email') }}</span>
<span>传真:{{ config('email') }}</span>
</div>
</ul>
</div>
</div>
{{-- <div class="ewm">--}}
{{-- <script type="text/javascript">document.write(unescape("%3Cspan id='_ideConac' %3E%3C/span%3E%3Cscript src='https://dcs.conac.cn/js/10/000/0000/40685465/CA100000000406854650003.js' type='text/javascript'%3E%3C/script%3E"));</script>--}}
{{-- </div>--}}
<div class="clearfix"></div>
</div>
<div class="FooterBottom">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-12">黑龙江省科学院自然与生态研究所 版本所有 C2010 ALL Right Reserved 黑ICP备100000021号</div>
</div>
</div>
</div>
</footer>
@push('script')
<script type="text/javascript">
$(document).ready(function () {
$('.Rightfixed-img-code').hover(
function () {
$('.Rightfixed-pop').css("display", "block");
$('.Rightfixed-img').css("width", "300px");
},
function () {
$('.Rightfixed-pop').css("display", "none");
$('.Rightfixed-img').css("width", "48px");
}
);
});
</script>
@endpush