mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 07:43:45 +08:00
2ffe413b0b
This commit removes the feature flag for the new /about page, enabling it for all sites, and removes the code for old the /about page. Internal topic: t/140413.
20 lines
608 B
Handlebars
20 lines
608 B
Handlebars
<AdminPageHeader
|
|
@titleLabel="admin.config_areas.about.header"
|
|
@descriptionLabelTranslated={{i18n
|
|
"admin.config_areas.about.description"
|
|
(hash basePath=(base-path))
|
|
}}
|
|
@hideTabs={{true}}
|
|
@learnMoreUrl="https://meta.discourse.org/t/understanding-and-customizing-the-about-page/332161"
|
|
>
|
|
<:breadcrumbs>
|
|
<DBreadcrumbsItem
|
|
@path="/admin/config/about"
|
|
@label={{i18n "admin.config_areas.about.header"}}
|
|
/>
|
|
</:breadcrumbs>
|
|
</AdminPageHeader>
|
|
|
|
<div class="admin-container admin-config-page__main-area">
|
|
<AdminConfigAreas::About @data={{this.model.site_settings}} />
|
|
</div> |