| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <%@ page language="java" contentType="text/html; charset=utf-8"
- pageEncoding="utf-8"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <!DOCTYPE html>
- <html>
- <head>
- <%
- String basePath = request.getScheme() + "://"
- + request.getServerName() + ":" + request.getServerPort()
- + request.getContextPath() + "/";
- %>
- <meta name="viewport"
- content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
- <link rel="apple-touch-icon" href="images/apple-touch-icon.png" />
- <link rel="apple-touch-startup-image"
- href="images/apple-touch-startup-image-320x460.png" />
- <title>企业新闻</title>
- <base href="<%=basePath%>jsps/mobile/" />
- <link
- href='http://fonts.useso.com/css?family=Source+Sans+Pro:400,300,700,900'
- rel='stylesheet' type='text/css' />
- <style type="text/css">
- #content {
- font-size: 14px;
- width: 100%;
- bottom: 50px;
- height: 80% !important;
- }
- html {
- overflow-x: hidden;
- overflow-y: auto;
- }
- img {
- max-width: 100%;
- }
- .bottombar {
- background-color: #0972b9;
- position: fixed;
- bottom: 0px;
- width: 100%;
- height: 50px;
- }
- </style>
- </head>
- <script type="text/javascript"
- src="<%=basePath%>resource/jquery/jquery-1.8.0.min.js"></script>
- <script type="text/javascript"
- src="<%=basePath%>resource/bootstrap/bootstrap.min.js"></script>
- <script type="text/javascript">
- var basePath = "<%=basePath%>";
- </script>
- <script type="text/javascript"
- src="<%=basePath%>resource/jquery/jquery-1.8.0.min.js"></script>
- <body>
- <div id="content">${news.ne_content}</div>
- <!-- 按钮触发模态框 -->
- <div style="height: 50px;"></div>
- <!-- <div class="bottombar">
- <div class="navbar_home_link">
- <a href="javascript:history.go(-1);" data-panel="left"
- class="open-panel"><img src="../../resource/images/user.png"
- alt="" title="" /></a>
- </div>
- <div class="navbar_page_center">企业新闻</div>
- <div class="menu_open_icon_white">
- <a id="selectpos" href="javascript:showMenu();"><img
- src="../../resource/images/menu_open.png" alt="" title="" /> </a>
- </div>
- </div> -->
- </body>
- </html>
|