post.html
1.23 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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head th:include="blog/index/include_blog::header"></head>
<body>
<nav th:include="blog/index/include_blog::nav" class="navbar navbar-default navbar-custom navbar-fixed-top" ></nav>
<!-- Page Header -->
<header class="intro-header"
style="background-image: url('/img/blog/post-bg.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="post-heading">
<h1 th:text="${bContent.title}"></h1>
<span class="meta">作者 <a href="#"
th:text="${bContent.author}"></a> <a href="#"
th:text="${gtmModified}"></a>
</span>
</div>
</div>
</div>
</div>
</header>
<!-- Post Content -->
<article>
<div class="container">
<div class="col-sm-11">
<div id="content" class="summernote"></div>
</div>
</div>
</article>
<hr>
<div th:include="blog/index/include_blog::footer"></div>
<script type="text/javascript" th:inline="javascript">
$().ready(function() {
$('.summernote').summernote({
lang : 'zh-CN'
});
var content = /*[[${bContent.content}]]*/
$('#content').code(content);
$('.summernote').destroy();
});
</script>
</body>
</html>