20 lines
573 B
Handlebars
20 lines
573 B
Handlebars
{{#if view.showFavoriteButton}}
|
|
<a {{bindAttr class=":star view.topic.starred:starred"}} {{action toggleStar target="controller"}} href='#' title="{{i18n favorite.help}}"></a>
|
|
{{/if}}
|
|
|
|
<h1>
|
|
{{#if view.topic.title}}
|
|
{{view Discourse.TopicStatusView topicBinding="view.topic"}}
|
|
<a class='topic-link' href='{{unbound view.topic.url}}'>{{view.topic.title}}</a>
|
|
{{else}}
|
|
{{#if view.topic.missing}}
|
|
{{i18n topic.not_found.title}}
|
|
{{else}}
|
|
{{i18n topic.loading}}
|
|
{{/if}}
|
|
{{/if}}
|
|
{{#if view.topic.category}}
|
|
{{categoryLink view.topic.category}}
|
|
{{/if}}
|
|
</h1>
|