123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <!DOCTYPE html>
- <HTML lang="zh-CN"><HEAD><TITLE>信息技术学院</TITLE>
- <META charset="UTF-8">
- <META name="viewport" content="width=device-width, initial-scale=1.0">
- <META content="ie=edge" http-equiv="X-UA-Compatible">
- <script src="/js/jquery-3.2.1.min.js"></script>
- <script src="/js/demo.js"></script>
- <script src="/js/xm_jquery.SuperSlide.2.1.3.js"></script>
- <script src="/js/resize.js"></script>
- <META name="keywords" content="河南中医药大学信息技术学院,河南中医药大学,信息技术学院">
- <LINK rel="stylesheet" href="/css/xm_index.css">
- <LINK rel="stylesheet" href="/css/m.css">
- <style>
- @media screen and (max-width: 720px){
- #pc{
- display:none!important;}
- }
- </style>
- <link rel="stylesheet" type="text/css" href="/css/index.vsb.css" />
- @foreach($foot as $k=>$v)
- @if($v->keys=='title')
- <META Name="keywords" Content="{{$v->value}}" />
- @endif
- @endforeach
- @yield('style')
- </HEAD>
- <BODY>
- <div id="pc">
- <DIV class="top_wrap" style="background-image: url('/img/xm_header.jpg');">
- <DIV class="top">
- <DIV class="top_content">
- <DIV class="top_left"><A href="http://xxjsxy.hactcm.edu.cn/"><IMG alt="学校logo" src="/img/xm_logo.png"> </A></DIV>
- <DIV class="top_right"><IMG class="zouxiang" alt="走向辉煌" src="/img/xm_zouxiang.png"> <IMG class="zhuiqiu" alt="追求成长" src="/img/xm_zhuiqiu.png"> </DIV>
- <DIV style="clear: both"></DIV></DIV></DIV></DIV><!--导航-->
- <DIV class="nav_wrap">
- <DIV class="nav">
- <UL>
- {{--导航栏部分--}}
- @include('demo.demo')
- </UL><!--#endeditable-->
- </DIV></DIV>
- <DIV style="clear: both"></DIV>
- @yield('content')
- <DIV id="footer" style="position: relative;background-image: url('/img/xm_footer_bg.png')">
- <DIV class="footer">
- <DIV class="footer_left">
- <DIV class="addr">
- @foreach($foot as $val)
- @if($val->keys=='address')
- <P>地址:{{$val->value}}</P>
- @elseif($val->keys=='phone')
- <P>电话:{{$val->value}}</P>
- @elseif($val->keys=='youbian')
- <P>邮编:{{$val->value}}</P>
- @elseif($val->keys=='copyright')
- <P>{{$val->value}}</P>
- @else
- @endif
- @endforeach
- </DIV>
- <DIV class="erweima">
- <!--#begineditable contype="" name="二维码" action="" layout="" clone="0" namechanged="0" order="0" ispublic="0" tagname="二维码" viewid="64173" stylesysid=""--><!--#endeditable-->
- <P>微信公众号</P></DIV></DIV>
- <DIV class="footer_right"><IMG alt="" src="/img/xm_logos.png"> </DIV>
- <DIV style="clear: both"></DIV>
- <div class="footer_box">
- <a href="http://xxjsxy.hactcm.edu.cn/wz1904/jbrk.htm">旧版入口</a>
- </div>
- </DIV>
- </DIV>
- </div>
- </BODY>
- @yield('js')
- <script>
- $(document).ready(function () {
- $('.month').each(function(){
- var d = $(this).attr('data');
- var de = d.substring(0,7);
- $(this).text(de);
- });
- $('.day').each(function(){
- var d = $(this).attr('data');
- var de = d.substring(8,10);
- $(this).text(de);
- });
- $('.m_meau').click(function () {
- $('.nav_mask').toggle();
- });
- $('.close_button').click(function () {
- $('.nav_mask').hide();
- })
-
- })
- </script>
- </HTML>
|