mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
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:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user