Revert "DEV: enforces ember-template-lint: no-triple-curlies (#9150)"

This reverts commit d436b600fb.

Triple curlies are still necessary for some raw templates.
This commit is contained in:
romanrizzi
2020-03-10 15:00:12 -03:00
parent 74acbad505
commit f795c1b8e8
152 changed files with 284 additions and 345 deletions

View File

@@ -1,10 +1,10 @@
<aside class='quote' data-post="{{post_number}}" data-topic="{{topic_id}}">
<div class='title'>
<div class='quote-controls'></div>
{{html-safe avatar}}
<a href="{{original_url}}">{{html-safe title}}</a> {{html-safe category_html}}
{{{avatar}}}
<a href="{{original_url}}">{{{title}}}</a> {{{category_html}}}
</div>
<blockquote>
{{html-safe quote}}
{{{quote}}}
</blockquote>
</aside>

View File

@@ -1,7 +1,7 @@
<aside class="onebox">
<article class="onebox-body user-onebox">
{{html-safe avatar}}
<h3><a href="{{original_url}}">{{html-safe username}}</a></h3>
{{{avatar}}}
<h3><a href="{{original_url}}">{{{username}}}</a></h3>
<div>
{{#name}}
<span class="full-name">{{name}}</span>
@@ -11,7 +11,7 @@
<svg class="fa d-icon d-icon-map-marker-alt svg-icon" xmlns="http://www.w3.org/2000/svg">
<use xlink:href="#map-marker-alt"></use>
</svg>
{{html-safe location}}
{{{location}}}
</span>
{{/location}}
{{#website}}
@@ -19,12 +19,12 @@
<svg class="fa d-icon d-icon-globe-americas svg-icon" xmlns="http://www.w3.org/2000/svg">
<use xlink:href="#globe-americas"></use>
</svg>
<a href="{{website}}">{{html-safe website_name}}</a>
<a href="{{website}}">{{{website_name}}}</a>
</span>
{{/website}}
</div>
{{#bio}}
<p>{{html-safe bio}}</p>
<p>{{{bio}}}</p>
{{/bio}}
<span>{{joined}} {{created_at}}</span>
</article>