Avoid escaping relevant template variables
This commit is contained in:
parent
6d90d35d25
commit
c407fb7963
165 changed files with 312 additions and 313 deletions
|
@ -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}}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue