mirror of
https://github.com/discourse/discourse.git
synced 2025-02-04 02:49:29 +08:00
29 lines
1007 B
Handlebars
29 lines
1007 B
Handlebars
<h3>{{shareTitle}}</h3>
|
|
|
|
{{#if date}}
|
|
<span class="date">{{displayDate}}</span>
|
|
{{/if}}
|
|
|
|
<div>
|
|
<input type='text'>
|
|
<div class="share-for-touch"><div class="overflow-ellipsis"><a></a></div></div>
|
|
</div>
|
|
|
|
{{#each sources as |s|}}
|
|
{{share-source source=s title=model.title action="share"}}
|
|
{{/each}}
|
|
|
|
{{#if topic.details.can_reply_as_new_topic}}
|
|
<div class='reply-as-new-topic'>
|
|
{{#if topic.isPrivateMessage}}
|
|
<a href {{action "replyAsNewTopic"}} aria-label={{i18n 'post.reply_as_new_private_message'}} title={{i18n 'post.reply_as_new_private_message'}}>{{d-icon "plus"}}{{i18n 'user.new_private_message'}}</a>
|
|
{{else}}
|
|
<a href {{action "replyAsNewTopic"}} aria-label={{i18n 'post.reply_as_new_topic'}} title={{i18n 'post.reply_as_new_topic'}}>{{d-icon "plus"}}{{i18n 'topic.create'}}</a>
|
|
{{/if}}
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class='link'>
|
|
<a href {{action "close"}} class="close-share" aria-label={{i18n 'share.close'}} title={{i18n 'share.close'}}>{{d-icon "close"}}</a>
|
|
</div>
|