FEATURE: Make category-navigation outlet tagless (#12788)

This commit is contained in:
Jarek Radosz 2021-04-21 21:45:09 +02:00 committed by GitHub
parent f186ff99c8
commit ad406b6e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}}