-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnews_detail.shtml
50 lines (50 loc) · 2.25 KB
/
news_detail.shtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="zh-Hans-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./css/base/reset.css">
<link rel="stylesheet" type="text/css" href="./css/base/common.css">
<link rel="stylesheet" type="text/css" href="./css/base/icon.css">
<link rel="stylesheet" type="text/css" href="./css/base/button.css">
<link rel="stylesheet" type="text/css" href="./css/main/detail.css">
<link rel="stylesheet" type="text/css" href="./css/main/news.css">
<title>新闻详情</title>
</head>
<body>
<!--#include virtual="./include/nav.shtml" -->
<div class="index_wrap">
<div class="index_con1">
<div class="detail">
<div class="news_detail">
<h3 class="news-title">
2016腾讯棋牌盛典重磅来袭,扑克比赛迎来三大历史性变革
</h3>
<p class="news-time">
2017-04-12
</p>
<div class="content">
内容内容内容内
</div>
</div>
</div>
</div>
</div>
<script src="//ossweb-img.qq.com/images/js/PTT/ping_tcss_tgideas_https_min.js"></script>
<script type="text/javascript" src="./js/main/contact.js"></script>
<script type="text/javascript" src="./js/lib/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="./js/nav.js"></script>
<script>
var setSite={ //设置网站属性
siteType:"os"||"a20160711xxx", //必填项:"os"代表是官网,如果不是,则填写actName例如a20160701xxx
pageType:"detail", //必填项:本页面的定位;按照页面含义填写例如main||list||detail||download||share||page1||pageN
pageName:"新闻详情", //必填项:页面中文名
osact:0, //选填项:是否是官网专题(在官网运营的专题)boolean;默认是0;可以在链接上加入参数osact=1来灵活设置
ingame:0, //选填项:是否投放在游戏APP内boolean;默认是0;可以在链接上加入参数ingame=1来灵活设置
stayTime:0 //选填项:是否需要统计停留时长boolean;默认是0
}
if(typeof(pgvMain)=='function')pgvMain();//千万不能忘记!
</script>
</body>
</html>