-
Notifications
You must be signed in to change notification settings - Fork 9
/
sheet.ftl
23 lines (23 loc) · 1.08 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
<#include "header.ftl">
<@header title="${post.title!} - ${blog_title!}"></@header>
<div class="container-fluid">
<div class="row">
<div id="main" class="col-12 clearfix" role="main">
<article class="posti" itemscope itemtype="http://schema.org/BlogPosting">
<h1 style="text-align:right;" class="post-title" itemprop="name headline">${post.title!}</h1>
<div class="post-content" itemprop="articleBody">
${post.formatContent!}
</div>
<div style="display:block;" class="clearfix">
<section style="float:right;">
<span><a id="btn-comments" href="javascript:isComments();">show comments</a></span> · <span><a href="javascript:goBack();">back</a></span> ·
<span><a href="${blog_url!}">home</a></span>
</section>
</div>
<#include "comments.ftl">
<@comment post=sheet type="sheet" />
</article>
</div>
</div>
</div>
<#include "footer.ftl">