Avoid escaping relevant template variables

This commit is contained in:
Hypolite Petovan 2018-12-13 22:35:51 -05:00
commit c407fb7963
165 changed files with 312 additions and 313 deletions

View file

@ -59,8 +59,8 @@
<div class="wall-item-location">{{$item.location}}</div>
</div>
<div class="wall-item-content">
<span class="wall-item-body e-content {{if !$item.title}}p-name{{/if}}">{{$item.body}}</span>
{{if $item.title}}<h2><a href="{{$item.plink.href}}" class="{{$item.sparkle}} p-name">{{$item.title}}</a></h2>{{/if}}
<span class="wall-item-body e-content {{if !$item.title}}p-name{{/if}}">{{$item.body nofilter}}</span>
</div>
</div>
<div class="wall-item-bottom">
@ -162,7 +162,7 @@
<div class="wall-item-bottom commentbox">
<div class="wall-item-links"></div>
<div class="wall-item-comment-wrapper">
{{$item.comment}}
{{$item.comment nofilter}}
</div>
</div>
{{/if}}{{/if}}{{/if}}
@ -187,10 +187,10 @@
{{* top thread comment box *}}
{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
<div class="wall-item-comment-wrapper" >{{$item.comment}}</div>
<div class="wall-item-comment-wrapper" >{{$item.comment nofilter}}</div>
{{/if}}{{/if}}{{/if}}
{{if $item.flatten}}
<div class="wall-item-comment-wrapper" >{{$item.comment}}</div>
<div class="wall-item-comment-wrapper" >{{$item.comment nofilter}}</div>
{{/if}}