forked from halo-dev/halo-theme-hshan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsheet.ftl
34 lines (34 loc) · 1.34 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
31
32
33
34
<#include "module/macro.ftl">
<@layout title="${sheet.title!} |${blog_title!} ">
<div id="page" class="site">
<main class="site-main" id="main">
<div class="site-content post-page">
<header class="bg-cover page-header">
<#if sheet.thumbnail?? && sheet.thumbnail!=''>
<div class="cover-bg">
<img src="${sheet.thumbnail!}" alt="${sheet.title!}">
</div>
<#else>
<div class="default-cover-bg">
</div>
</#if>
<div class="cover-content">
<div class="inner">
<div class="post-count"></div>
<h1 class="page-title" style="font-size: 46px;">${sheet.title!}</h1>
</div>
</div>
</header>
<div class="sheet-content">
${sheet.formatContent!}
</div>
</div>
<#include "module/comment.ftl">
<#if is_post??>
<@comment post,"post" />
<#elseif is_sheet??>
<@comment sheet,"sheet" />
</#if>
</main>
</div>
</@layout>