cbsy/blxc-admin/target/classes/templates/portal/details.html

104 lines
4.2 KiB
HTML
Raw Normal View History

2024-06-02 22:37:16 +08:00
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="renderer" content="webkit">
<title>若依系统首页</title>
<!-- 避免IE使用兼容模式 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="../../static/portal/css/swiper.min.css" th:href="@{/portal/css/swiper.min.css}" rel="stylesheet" />
<link href="../../static/portal/css/style.css" th:href="@{/portal/css/style.css}" rel="stylesheet"/>
<link href="../../static/portal/css/index.css" th:href="@{/portal/css/index.css}" rel="stylesheet"/>
<link href="../../static/portal/css/text.css" th:href="@{/portal/css/text.css}" rel="stylesheet" />
<link href="../../static/portal/css/_sitegray_d.css" th:href="@{/portal/css/_sitegray_d.css}" rel="stylesheet" />
<!-- <link href="https://fonts.googleapis.com/css?family=Noto+Sans+SC:100,300,400,500,700,900" rel="stylesheet" >-->
<script src="static/portal/js/jquer3y6.min.js" th:src="@{/portal/js/jquer3y6.min.js}"></script>
<!-- [if lte IE 9]>
<script src="../../static/portal/js/jquery_ie8.js" th:src="@{/portal/js/jquery_ie8.js}"></script>
<![endif] -->
<!-- <link rel="stylesheet" type="text/css" href="static/css/swiper.css" /> -->
<script src="../../static/portal/js/_sitegray.js" th:src="@{/portal/js/_sitegray.js}"></script>
<script src="../../static/portal/js/flexible.js" th:src="@{/portal/js/flexible.js}"></script>
<script src="../../static/portal/js/detectZoom.js" th:src="@{/portal/js/detectZoom.js}"></script>
<script src="../../static/portal/js/counter.js" th:src="@{/portal/js/counter.js}"></script>
</head>
<body>
<div class="swiper-container">
<div class="main-wrapper">
<div class="full_width homea">
<div class="container">
<th:block th:include="portal/headerAndFooter :: header" />
</div>
<div class="detailcon">
<div class="crumbs">
<img src="../../static/portal/images/shouye.png" th:src="@{/portal/images/shouye.png}" alt="" />
<a href="index.html">首页</a>
>
<a href="#">书院新闻</a>
>
<a href="#">通知公告</a>
</div>
<div class="details_title">
<h2>学院召开新农科创新课程开发研讨会</h2>
<ul>
<li>日期2024/03/12</li>
<li>编辑:吉林农大新农科长白山创新学院</li>
<li>点击率65</li>
</ul>
</div>
<div class="con deheligh">
<div class="clearfix">
<div style="text-indent:1.5rem;width:100%;float:left;">
<p>HELLO WORLD!</p>
</div>
</div>
</div>
</div>
</div>
</div>
<th:block th:include="portal/headerAndFooter :: footer" />
</div>
<th:block th:include="portal/headerAndFooter :: search" />
<script src="../../static/js/public.js" th:src="@{/portal/js/public.js}"></script>
<script type="text/javascript">
//if($(window).width()<1024){
//判断手机横竖屏状态:
if (window.orientation == 180 || window.orientation == 0) {
//alert("竖屏状态!")
$(".stips").hide();
}
if (window.orientation == 90 || window.orientation == -90) {
//alert("横屏状态!")
$(".stips").css({
display: "flex"
});
}
function hengshuping() {
if (window.orientation == 180 || window.orientation == 0) {
//alert("竖屏状态!")
$(".stips").hide();
}
if (window.orientation == 90 || window.orientation == -90) {
//alert("横屏状态!")
$(".stips").css({
display: "flex"
});
}
}
//}
window.addEventListener(
"onorientationchange" in window ? "orientationchange" : "resize",
hengshuping,
false
);
</script>
</body>
</html>