-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpost.html
37 lines (36 loc) · 1.43 KB
/
post.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
#include('./header.html')
<div class="mask"></div>
<div class="container">
<div class="container-main">
<article class="post-page-main">
<header class="animated2 fadeInDown">
<h2>${title()}</h2>
<time datetime="${created("yyyy-MM-dd'T'HH:mm:ss.SSSXXX")}">${created('yyyy-MM-dd')}</time>
</header>
<section class="post-page-content animated fadeInDown">
${show_content()}
</section>
<footer class="animated fadeInDown">
<div class="post-page-tags">
标签:${show_tags()}
</div>
<div class="post-page-readmore">
#if(null != article_prev())
<div class="post-page-readmore-prev">
<span>上一篇: </span>
<a href="${permalink(article_prev())}">${title(article_prev())}</a>
</div>
#end
#if(null != article_next())
<div class="post-page-readmore-next">
<span>下一篇: </span>
<a href="${permalink(article_next())}">${title(article_next())}</a>
</div>
#end
</div>
#include('./comments.html')
</footer>
</article>
</div>
</div>
#include('./footer.html')