video_view.jsp
2.21 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ include file="/pages/common/taglib.jsp"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>点播详情 | <f:message key="common.title" /></title>
<meta
content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no'
name='viewport'>
<%@ include file="/pages/common/css.jsp"%>
<script src="${BASE}/static/assets/jwplayer/jwplayer.js"></script>
<script src="${BASE}/static/assets/jwplayer/jwplayer.html5.js"></script>
<script type="text/javascript">
jwplayer.key = "MGAzpXRYxGnaVXhH8jSdKXzDe7ucAAvZGWggIA==";
</script>
</head>
<body class="skin-blue fixed ">
<div class="wrapper">
<%@ include file="/pages/common/top.jsp"%>
<%@ include file="/pages/common/left.jsp"%>
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
点播详情 <small>${tVideo.title}</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> 首页</a></li>
<li><a href="#">点播详情</a></li>
</ol>
</section>
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="timeline-item">
<div class="timeline-body">
<div class="row">
<div class="col-md-12">
<div class="box box-danger">
<div class="box-body">
<table class="table table-bordered">
<tr>
<td colspan="3" align='center'><h2>${tVideo.title}</h2></td>
</tr>
<tr>
<td>Name:</td>
<td colspan="3">${tVideo.name}</td>
</tr>
<tr>
<td>地点:</td>
<td colspan="3">${tActivity.place}</td>
</tr>
<tr>
<td>简介:</td>
<td colspan="3">${tActivity.description}</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<%@ include file="/pages/common/bottom.jsp"%>
</div>
<%@ include file="/pages/common/js.jsp"%>
<script src="${BASE}/static/assets/cnlive/js/player_6.js"></script>
</div>
</section>
</div>
</div>
</body>
</html>