forked from cetr/halo-theme-sagiri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sheet.ftl
44 lines (43 loc) · 1.83 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
35
36
37
38
39
40
41
42
43
44
<#include "layout/head.ftl">
<@head title="${sheet.title!} | ${blog_title!}"/>
<div class="container sidebar-position-right page-home">
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner">
<#include "layout/navbar.ftl">
<#include "layout/brand_wrapper.ftl">
<#include "layout/master.ftl">
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
${post.title}
</h1>
</header>
<div class="post-body" itemprop="articleBody">
${sheet.formatContent!}
</div>
</div>
</article>
</section>
</div>
<#if !post.disallowComment!false>
<div id="comments" class="comments">
<#include "layout/comment.ftl">
<@comment post=sheet type="sheet" />
</div>
</#if>
</div>
<#include "layout/sheet_directory.ftl">
</div>
</main>
<#include "layout/footer.ftl">
<#include "layout/back_to_top.ftl">
</div>
<#include "layout/tail.ftl">