discourse/app/assets/javascripts/admin/addon/templates/config-about.hbs
Osama Sayegh 2ffe413b0b
FEATURE: Enable the new /about page for everyone (#29390)
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.
2024-10-29 18:40:11 +03:00

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>