diff --git a/app/assets/javascripts/discourse/app/templates/tags/show.hbs b/app/assets/javascripts/discourse/app/templates/tags/show.hbs index 80f38623c33..ea0ed47cfc0 100644 --- a/app/assets/javascripts/discourse/app/templates/tags/show.hbs +++ b/app/assets/javascripts/discourse/app/templates/tags/show.hbs @@ -1,90 +1,92 @@ -
- {{discourse-banner user=currentUser banner=site.banner}} -
- -
+{{#d-section pageClass="tags" bodyClass=(concat "tag-" tag.id)}}
- + {{discourse-banner user=currentUser banner=site.banner}}
-
-{{#if showInfo}} - {{tag-info tag=tag list=list deleteAction=(action "deleteTag")}} -{{/if}} +
+
+ +
+
+ + {{#if showInfo}} + {{tag-info tag=tag list=list deleteAction=(action "deleteTag")}} + {{/if}} + + {{plugin-outlet name="discovery-list-container-top"}} + +
+
+
+
+ {{#unless loading}} + {{#if list.topics}} + {{#discovery-topics-list model=list refresh=(action "refresh")}} + {{bulk-select-button selected=selected action=(action "refresh")}} + {{topic-list + topics=list.topics + canBulkSelect=canBulkSelect + toggleBulkSelect=(action "toggleBulkSelect") + bulkSelectEnabled=bulkSelectEnabled + selected=selected + showPosters=true + order=order + ascending=ascending + changeSort=(action "changeSort") + }} + {{/discovery-topics-list}} + {{else}} + + {{/if}} + {{/unless}} + + {{conditional-loading-spinner condition=list.loadingMore}} +
- +{{/d-section}}