mirror of
https://github.com/discourse/discourse.git
synced 2025-01-19 08:12:46 +08:00
FEATURE: Make category-navigation
outlet tagless (#12788)
This commit is contained in:
parent
f186ff99c8
commit
ad406b6e11
|
@ -1,22 +1,23 @@
|
|||
{{add-category-tag-classes category=category tagName=""}}
|
||||
{{add-category-tag-classes category=category tagName=""}}
|
||||
|
||||
<section class="category-heading">
|
||||
{{#if category.uploaded_logo.url}}
|
||||
{{cdn-img
|
||||
src=category.uploaded_logo.url
|
||||
class="category-logo"
|
||||
width=category.uploaded_logo.width
|
||||
height=category.uploaded_logo.height}}
|
||||
{{#if category.description}}
|
||||
<p>{{dir-span category.description}}</p>
|
||||
{{/if}}
|
||||
<section class="category-heading">
|
||||
{{#if category.uploaded_logo.url}}
|
||||
{{cdn-img
|
||||
src=category.uploaded_logo.url
|
||||
class="category-logo"
|
||||
width=category.uploaded_logo.width
|
||||
height=category.uploaded_logo.height
|
||||
}}
|
||||
|
||||
{{#if category.description}}
|
||||
<p>{{dir-span category.description}}</p>
|
||||
{{/if}}
|
||||
{{/if}}
|
||||
|
||||
{{plugin-outlet name="category-heading" args=(hash category=category)}}
|
||||
</section>
|
||||
{{plugin-outlet name="category-heading" args=(hash category=category)}}
|
||||
</section>
|
||||
|
||||
{{#d-section class="navigation-container category-navigation"}}
|
||||
|
||||
{{d-navigation
|
||||
category=category
|
||||
filterMode=filterMode
|
||||
|
@ -25,8 +26,12 @@
|
|||
createTopic=(route-action "createTopic")
|
||||
createTopicDisabled=cannotCreateTopicOnCategory
|
||||
hasDraft=currentUser.has_topic_draft
|
||||
editCategory=(route-action "editCategory" category)}}
|
||||
|
||||
{{plugin-outlet name="category-navigation" args=(hash category=category)}}
|
||||
editCategory=(route-action "editCategory" category)
|
||||
}}
|
||||
|
||||
{{plugin-outlet
|
||||
name="category-navigation"
|
||||
args=(hash category=category)
|
||||
tagName=""
|
||||
}}
|
||||
{{/d-section}}
|
||||
|
|
Loading…
Reference in New Issue
Block a user