File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
packages/docusaurus-theme-classic/src/theme/BlogTagsListPage Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,12 @@ import {
1313 ThemeClassNames ,
1414 translateTagsPageTitle ,
1515} from '@docusaurus/theme-common' ;
16- import BlogLayout from '@theme/BlogLayout' ;
1716import TagsListByLetter from '@theme/TagsListByLetter' ;
1817import type { Props } from '@theme/BlogTagsListPage' ;
1918import SearchMetadata from '@theme/SearchMetadata' ;
2019import Heading from '@theme/Heading' ;
2120
22- export default function BlogTagsListPage ( { tags, sidebar } : Props ) : JSX . Element {
21+ export default function BlogTagsListPage ( { tags} : Props ) : JSX . Element {
2322 const title = translateTagsPageTitle ( ) ;
2423 return (
2524 < HtmlClassNameProvider
@@ -29,10 +28,8 @@ export default function BlogTagsListPage({tags, sidebar}: Props): JSX.Element {
2928 ) } >
3029 < PageMetadata title = { title } />
3130 < SearchMetadata tag = "blog_tags_list" />
32- < BlogLayout sidebar = { sidebar } >
33- < Heading as = "h1" > { title } </ Heading >
34- < TagsListByLetter tags = { tags } />
35- </ BlogLayout >
31+ < Heading as = "h1" > { title } </ Heading >
32+ < TagsListByLetter tags = { tags } />
3633 </ HtmlClassNameProvider >
3734 ) ;
3835}
You can’t perform that action at this time.
0 commit comments