-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsheet.ftl
30 lines (30 loc) · 1.22 KB
/
sheet.ftl
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
<#include "layouts/partials/head.ftl">
<@head title="${sheet.title!} · ${blog_title!}" canonical="${sheet.fullPath!}" />
<body>
<div class="main animated">
<#include "layouts/partials/nav.ftl">
<#include "layouts/partials/header.ftl">
<div class="content">
<div class="post_page">
<div class="post animated fadeInDown">
<div class="post_title post_detail_title">
<h2><a href='${sheet.fullPath!}'>${sheet.title!}</a></h2>
<span class="date">${sheet.createTime?string('yyyy.MM.dd')}</span>
</div>
<div class="post_content markdown">${sheet.formatContent}</div>
<div class="post_footer">
</div>
</div>
<!-- Valine 评论系统 -->
<#include "layouts/partials/comments.ftl">
<@comment post=sheet type="sheet" />
</div>
</div>
<a id="back_to_top" href="#" class="back_to_top"><i class="ri-arrow-up-s-line"></i></a>
</div>
<#include "layouts/partials/footer.ftl">
<#include "layouts/partials/js.ftl">
<#include "./layouts/partials/highlightjs/libs-import.ftl" />
<#include "./layouts/partials/highlightjs/scripts.ftl" />
</body>
</html>