in src/theme/DocTagDocListPage/index.tsx [75:106]
function DocTagDocListPageContent({
tag,
title,
}: Props & {title: string}): JSX.Element {
return (
<HtmlClassNameProvider
className={clsx(ThemeClassNames.page.docsTagDocListPage)}>
<div className="container margin-vert--lg">
<div className="row">
<main className="col col--8 col--offset-2">
{tag.unlisted && <Unlisted />}
<header className="margin-bottom--xl">
<Heading as="h1">{title}</Heading>
<Link href={tag.allTagsPath}>
<Translate
id="theme.tags.tagsPageLink"
description="The label of the link targeting the tag list page">
View All Tags
</Translate>
</Link>
</header>
<section className="margin-vert--lg">
{tag.items.map((doc) => (
<DocItem key={doc.id} doc={doc} />
))}
</section>
</main>
</div>
</div>
</HtmlClassNameProvider>
);
}