aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/templates/postDetail.ftlh
blob: 13d2ee50b2aa71311f2f2f6d82cb7e01e668ca9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<#include 'lib.ftlh'>

<@wrapper title="/r/${subreddit}">
  <@header subreddit/>

  <div class="post-summary">
    <@postSummary postDetail.post/>
  </div>

  <div class="post-selftext">
    ${(postDetail.selftextHtmlUnescaped?no_esc)!""}
  </div>

  <div class="comment-heading"><@pluralise postDetail.commentCount, "comment"/></div>
  <div class="comments">
    <#list postDetail.comments as comment>
      <@postComment comment/>
    </#list>
  </div>

</@wrapper>