CLEANUP: removed all unused handlebars helpers REFACTOR: removed 'unbound' prefix (for performance reasons, helpers are unbound by default) REFACTOR: added 'bound' prefix to bound helpers REFACTOR: renamed helper using 'foo-bar-foo' syntax (instead of camel case)
16 lines
347 B
Handlebars
16 lines
347 B
Handlebars
<h3>{{view.title}}</h3>
|
|
|
|
{{#if date}}
|
|
<span class="date">{{bound-raw-date date}}</span>
|
|
{{/if}}
|
|
|
|
<div><input type='text' /></div>
|
|
|
|
{{#each shareLinks}}
|
|
{{view Discourse.ShareLinkView contentBinding="this"}}
|
|
{{/each}}
|
|
|
|
<div class='link'>
|
|
<a href='#' {{action close}} title='{{i18n share.close}}'><i class="fa fa-times-circle"></i></a>
|
|
</div>
|