-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopic.html
46 lines (44 loc) · 1.92 KB
/
topic.html
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
<!--Created by MasterHo on 2016/7/6 via IntelliJ IDEA.-->
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>话题内容</title>
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css"/>
<link rel="stylesheet" href="css/mobilebbs.css">
</head>
<body>
<div data-role="page" id="Topic">
<div data-role="header" data-position="fixed">
<a href="#" data-role="button" data-rel="back" data-icon="back">返回</a>
<h1>话题内容</h1>
<a href="index.html/#Login" data-role="button" data-icon="user" id="btnLogin" class="ui-btn-right btnUser" data-transition="slide">登录</a>
</div><!-- /header -->
<div data-role="content">
<h3 class="ui-bar ui-bar-a ui-corner-all" id="topicTitle">标题:</h3>
<div class="ui-body ui-body-a ui-corner-all">
<p>
<span id="topicContent"></span>
<br/><br/>
<span class="topicInfo">作者:<span id="topicAuthor"></span><br/>发布时间:<span id="topicTime"></span></span><br/>
<a id="btnTopicEdit" class="ui-btn ui-mini ui-btn-inline" data-transition="flip">编辑话题</a>
<button id="btnDelTopic" class="ui-btn ui-mini ui-btn-inline">删除话题</button>
</p>
</div>
<div id="divTopicReplies">
</div>
<div id="divTopicEvent">
</div>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
<div data-role="navbar" data-iconpos="left" id="btnFtNewReply">
<ul>
<li><a href="#" data-role="button" id="btnPubReply" class="ui-btn" data-icon="plus" data-transition="flip">发表评论</a></li>
</ul>
</div>
<h1 class="copyRight">Copyright© MasterHo 2016<br>Powered by jQuery Mobile.</h1>
</div>
</div><!-- /page -->
</body>
</html>