index.blade.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <!DOCTYPE html>
  2. <HTML lang="zh-CN"><HEAD><TITLE>信息技术学院</TITLE>
  3. <META charset="UTF-8">
  4. <META name="viewport" content="width=device-width, initial-scale=1.0">
  5. <META content="ie=edge" http-equiv="X-UA-Compatible">
  6. <script src="/js/jquery-3.2.1.min.js"></script>
  7. <script src="/js/demo.js"></script>
  8. <script src="/js/xm_jquery.SuperSlide.2.1.3.js"></script>
  9. <script src="/js/resize.js"></script>
  10. <META name="keywords" content="河南中医药大学信息技术学院,河南中医药大学,信息技术学院">
  11. <LINK rel="stylesheet" href="/css/xm_index.css">
  12. <LINK rel="stylesheet" href="/css/m.css">
  13. <style>
  14. @media screen and (max-width: 720px){
  15. #pc{
  16. display:none!important;}
  17. }
  18. </style>
  19. <link rel="stylesheet" type="text/css" href="/css/index.vsb.css" />
  20. @foreach($foot as $k=>$v)
  21. @if($v->keys=='title')
  22. <META Name="keywords" Content="{{$v->value}}" />
  23. @endif
  24. @endforeach
  25. @yield('style')
  26. </HEAD>
  27. <BODY>
  28. <div id="pc">
  29. <DIV class="top_wrap" style="background-image: url('/img/xm_header.jpg');">
  30. <DIV class="top">
  31. <DIV class="top_content">
  32. <DIV class="top_left"><A href="http://xxjsxy.hactcm.edu.cn/"><IMG alt="学校logo" src="/img/xm_logo.png"> </A></DIV>
  33. <DIV class="top_right"><IMG class="zouxiang" alt="走向辉煌" src="/img/xm_zouxiang.png"> <IMG class="zhuiqiu" alt="追求成长" src="/img/xm_zhuiqiu.png"> </DIV>
  34. <DIV style="clear: both"></DIV></DIV></DIV></DIV><!--导航-->
  35. <DIV class="nav_wrap">
  36. <DIV class="nav">
  37. <UL>
  38. {{--导航栏部分--}}
  39. @include('demo.demo')
  40. </UL><!--#endeditable-->
  41. </DIV></DIV>
  42. <DIV style="clear: both"></DIV>
  43. @yield('content')
  44. <DIV id="footer" style="position: relative;background-image: url('/img/xm_footer_bg.png')">
  45. <DIV class="footer">
  46. <DIV class="footer_left">
  47. <DIV class="addr">
  48. @foreach($foot as $val)
  49. @if($val->keys=='address')
  50. <P>地址:{{$val->value}}</P>
  51. @elseif($val->keys=='phone')
  52. <P>电话:{{$val->value}}</P>
  53. @elseif($val->keys=='youbian')
  54. <P>邮编:{{$val->value}}</P>
  55. @elseif($val->keys=='copyright')
  56. <P>{{$val->value}}</P>
  57. @else
  58. @endif
  59. @endforeach
  60. </DIV>
  61. <DIV class="erweima">
  62. <!--#begineditable contype="" name="二维码" action="" layout="" clone="0" namechanged="0" order="0" ispublic="0" tagname="二维码" viewid="64173" stylesysid=""--><!--#endeditable-->
  63. <P>微信公众号</P></DIV></DIV>
  64. <DIV class="footer_right"><IMG alt="" src="/img/xm_logos.png"> </DIV>
  65. <DIV style="clear: both"></DIV>
  66. <div class="footer_box">
  67. <a href="http://xxjsxy.hactcm.edu.cn/wz1904/jbrk.htm">旧版入口</a>
  68. </div>
  69. </DIV>
  70. </DIV>
  71. </div>
  72. </BODY>
  73. @yield('js')
  74. <script>
  75. $(document).ready(function () {
  76. $('.month').each(function(){
  77. var d = $(this).attr('data');
  78. var de = d.substring(0,7);
  79. $(this).text(de);
  80. });
  81. $('.day').each(function(){
  82. var d = $(this).attr('data');
  83. var de = d.substring(8,10);
  84. $(this).text(de);
  85. });
  86. $('.m_meau').click(function () {
  87. $('.nav_mask').toggle();
  88. });
  89. $('.close_button').click(function () {
  90. $('.nav_mask').hide();
  91. })
  92. })
  93. </script>
  94. </HTML>