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

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

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

  ${(postDetail.selftextHtmlUnescaped?no_esc)!""}

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

</@wrapper>