student_shouce.html
1.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>学员手册</title>
<link rel="stylesheet" href="/static/css/common.css">
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body style="background-color: #f6f6f6;">
<div class="box">
<div class="shouceBox">
<empty name="data">
<div class="orderList">
<h1>
<b>暂无数据</b>
</h1>
</div>
<else />
<volist name="data" id="vo">
<div class="ceList">
<a href="{:url('shouce_details',array('id'=>$vo['id']))}">
<img src="/upload/{$vo.thumbnail}" />
<div class="ce_content">
<h1>{$vo.post_title}</h1>
<p class="introduce">
{$vo.post_excerpt}
</p>
</div>
</a>
</div>
</volist>
</empty>
</div>
</div>
<script type="text/javascript" src="/static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="/static/js/common.js"></script>
<script type="text/javascript" src="/static/js/study_car.js"></script>
<script>
</script>
</body>
</html>