mirror of
https://github.com/friendica/friendica
synced 2024-11-13 03:02:53 +00:00
Fixing templates - unescaping it again
This commit is contained in:
parent
0fe8b849bb
commit
c7a636fe18
5 changed files with 7 additions and 7 deletions
|
@ -86,7 +86,7 @@
|
||||||
{{if $profile.about}}
|
{{if $profile.about}}
|
||||||
<dl id="aprofile-about" class="aprofile">
|
<dl id="aprofile-about" class="aprofile">
|
||||||
<dt>{{$profile.about.0}}</dt>
|
<dt>{{$profile.about.0}}</dt>
|
||||||
<dd>{{$profile.about.1}}</dd>
|
<dd>{{$profile.about.1 nofilter}}</dd>
|
||||||
</dl>
|
</dl>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -90,7 +90,7 @@
|
||||||
<div id="aprofile-about" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 aprofile">
|
<div id="aprofile-about" class="col-lg-12 col-md-12 col-sm-12 col-xs-12 aprofile">
|
||||||
<hr class="profile-separator">
|
<hr class="profile-separator">
|
||||||
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 profile-label-name text-muted">{{$profile.about.0}}</div>
|
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12 profile-label-name text-muted">{{$profile.about.0}}</div>
|
||||||
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-12 profile-entry">{{$profile.about.1}}</div>
|
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-12 profile-entry">{{$profile.about.1 nofilter}}</div>
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -141,11 +141,11 @@
|
||||||
<div class="wall-item-tags">
|
<div class="wall-item-tags">
|
||||||
{{if !$item.suppress_tags}}
|
{{if !$item.suppress_tags}}
|
||||||
{{foreach $item.hashtags as $tag}}
|
{{foreach $item.hashtags as $tag}}
|
||||||
<span class="tag label btn-info sm">{{$tag}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
|
<span class="tag label btn-info sm">{{$tag nofilter}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
{{foreach $item.mentions as $tag}}
|
{{foreach $item.mentions as $tag}}
|
||||||
<span class="mention label btn-warning sm">{{$tag}} <i class="fa fa-user" aria-hidden="true"></i></span>
|
<span class="mention label btn-warning sm">{{$tag nofilter}} <i class="fa fa-user" aria-hidden="true"></i></span>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -264,11 +264,11 @@ as the value of $top_child_total (this is done at the end of this file)
|
||||||
<div class="wall-item-tags">
|
<div class="wall-item-tags">
|
||||||
{{if !$item.suppress_tags}}
|
{{if !$item.suppress_tags}}
|
||||||
{{foreach $item.hashtags as $tag}}
|
{{foreach $item.hashtags as $tag}}
|
||||||
<span class="tag label btn-info sm">{{$tag}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
|
<span class="tag label btn-info sm">{{$tag nofilter}} <i class="fa fa-bolt" aria-hidden="true"></i></span>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
|
|
||||||
{{foreach $item.mentions as $tag}}
|
{{foreach $item.mentions as $tag}}
|
||||||
<span class="mention label btn-warning sm">{{$tag}} <i class="fa fa-user" aria-hidden="true"></i></span>
|
<span class="mention label btn-warning sm">{{$tag nofilter}} <i class="fa fa-user" aria-hidden="true"></i></span>
|
||||||
{{/foreach}}
|
{{/foreach}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@
|
||||||
{{if $profile.about}}
|
{{if $profile.about}}
|
||||||
<dl id="aprofile-about" class="aprofile">
|
<dl id="aprofile-about" class="aprofile">
|
||||||
<dt>{{$profile.about.0}}</dt>
|
<dt>{{$profile.about.0}}</dt>
|
||||||
<dd>{{$profile.about.1}}</dd>
|
<dd>{{$profile.about.1 nofilter}}</dd>
|
||||||
</dl>
|
</dl>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue