mirror of
https://github.com/discourse/discourse.git
synced 2025-01-10 02:14:09 +08:00
a879bcdc35
This converts the `<AdminPageHeader />` component and the `<AdminPageSubheader />` components into new components that can be used outside of admin, and updates the CSS classes. Also introduces a `<DPageActionButton />` component and child components for the header action buttons. I have to keep the old admin-only components around for now until plugins are updated, then we can remove it, and remove the re-exports that are done within admin-page-action-button.gjs
24 lines
732 B
Handlebars
24 lines
732 B
Handlebars
<DPageHeader
|
|
@titleLabel={{i18n "admin.config_areas.look_and_feel.title"}}
|
|
@descriptionLabel={{i18n "admin.config_areas.look_and_feel.description"}}
|
|
@learnMoreUrl="https://meta.discourse.org/t/beginners-guide-to-using-discourse-themes/91966"
|
|
>
|
|
<:breadcrumbs>
|
|
<DBreadcrumbsItem @path="/admin" @label={{i18n "admin_title"}} />
|
|
<DBreadcrumbsItem
|
|
@path="/admin/config/look-and-feel"
|
|
@label={{i18n "admin.config_areas.look_and_feel.title"}}
|
|
/>
|
|
</:breadcrumbs>
|
|
|
|
<:tabs>
|
|
<NavItem
|
|
@route="adminConfig.lookAndFeel.themes"
|
|
@label="admin.config_areas.look_and_feel.themes.title"
|
|
/>
|
|
</:tabs>
|
|
</DPageHeader>
|
|
|
|
<div class="admin-container admin-config-page__main-area">
|
|
{{outlet}}
|
|
</div> |