mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:51:36 +08:00
371bbadb92
* Run no-implicit-this codemod for app templates * Run tagless-ember-components-codemod for plugins * Turn on no-implicit-this lint
14 lines
440 B
Handlebars
14 lines
440 B
Handlebars
<div class="admin-new-feature-item">
|
|
<div class="new-feature-emoji">{{this.item.emoji}}</div>
|
|
<div class="new-feature-content">
|
|
<div class="header">
|
|
{{#if this.item.link}}
|
|
<a href={{this.item.link}} target="_blank" rel="noopener noreferrer">{{this.item.title}}</a>
|
|
{{else}}
|
|
{{this.item.title}}
|
|
{{/if}}
|
|
</div>
|
|
<div class="feature-description">{{this.item.description}}</div>
|
|
</div>
|
|
</div>
|