-
Notifications
You must be signed in to change notification settings - Fork 100
/
content.html
92 lines (92 loc) · 4.05 KB
/
content.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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE HTML>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<meta name="format-detection" content="telephone=no">
<link rel="stylesheet" href="css/common.css">
<link rel="icon" href="images/avatar.jpg">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/gitment.css">
</head>
<body>
<label class="navi-button">MENU</label>
<input type="text" class="search-input" placeholder="回车搜索">
<img src="images/search.svg" class="search">
<ul class="main-navication">
<ul id="menu"></ul>
<hr>
<ul id="friends"></ul>
</ul>
<div class="main">
<div class="jumbotron" style="text-align: center;background-color:#ecf0f1;margin-bottom:0;">
<h1 id="title"></h1>
<br>
<text id="instruction"></text>
</div>
<div style="width:100%;background-color:#ffffff">
<div class="container">
<div id="content" class="gitment-markdown" style="margin-top:50px;margin-bottom: 50px">内容加载中...</div>
<div class="post-tags" id="labels"></div>
<hr>
<div lang="zh-CN" class="gitment-container gitment-header-container">
<span><strong id="comments-num"></strong> 条评论</span>
</div>
<div lang="zh-CN" class="gitment-container gitment-comments-container">
<ul class="gitment-comments-list" id="comment-list"></ul>
</div>
<div style="text-align: center">
<ul class="pagination" id="pages" style="display: none"></ul>
</div>
<div style="text-align:left">
<div lang="zh-CN" class="gitment-container gitment-editor-container">
<div id="avatar"></div>
<div class="gitment-editor-main">
<div class="gitment-editor-header">
<nav class="gitment-editor-tabs">
<button class="gitment-editor-tab gitment-selected" id="editComment">评论</button>
<button class="gitment-editor-tab" id="preview">预览</button>
</nav>
<div class="gitment-editor-login" id='login'></div>
</div>
<div class="gitment-editor-body">
<div class="gitment-editor-write-field" id="write-field">
<textarea placeholder="(发表评论)" title="请登入以发表评论" disabled id="comment-input"></textarea>
</div>
<div class="gitment-editor-preview-field gitment-hidden">
<div class="gitment-editor-preview gitment-markdown" id="preview-content">(没有预览)</div>
</div>
</div>
</div>
<div class="gitment-editor-footer">
<a class="gitment-editor-footer-tip" href="https://guides.github.com/features/mastering-markdown/" target="_blank">
支持 Markdown 语法
</a>
<button class="gitment-editor-submit" disabled>发送</button>
</div>
</div>
</div>
</div>
</div>
<div class="footer" style="text-align: center">
<div id='icon' style="display: flex;justify-content: center;padding: 0;align-items: center"></div>
<div id="footer" style="text-align: center;background: #2c3e50;padding-top: 30px;color: white"></div>
</div>
</div>
<img class="Totop" href="javascript:;" src="images/totop.png">
</body>
<script src = "js/jquery.min.js"></script>
<script type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js?config=TeX-MML-AM_CHTML" async></script>
<script src="js/gitblog.js"></script>
<script>
(function(){
setTimeout(function() {
MathJax.Hub.Config({tex2jax: {inlineMath: [['$','$'], ['\\(','\\)']]}});
}, 500);
setInterval(function() {
MathJax.Hub.Queue(["Typeset",MathJax.Hub]);
}, 500);
})()
</script>
</html>