mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-20 06:01:10 +02:00
* add secrets/postgresql redirect * change name of old path * ensure deprecated pages are not indexed by search engines * remove deprecated page from navigation
62 lines
1.6 KiB
JavaScript
62 lines
1.6 KiB
JavaScript
import DocsSidenav from '@hashicorp/react-docs-sidenav'
|
|
import Content from '@hashicorp/react-content'
|
|
import InlineSvg from '@hashicorp/react-inline-svg'
|
|
import githubIcon from './img/github-icon.svg?include'
|
|
import Link from 'next/link'
|
|
import Head from 'next/head'
|
|
|
|
export default function DocsPage({
|
|
children,
|
|
path,
|
|
orderData,
|
|
frontMatter,
|
|
category,
|
|
pageMeta
|
|
}) {
|
|
return (
|
|
<div id="p-docs">
|
|
<Head>
|
|
<title key="title">{pageMeta.page_title} | Vault by HashiCorp</title>
|
|
{pageMeta.description && (
|
|
<meta
|
|
name="description"
|
|
property="og:description"
|
|
content={pageMeta.description}
|
|
key="description"
|
|
/>
|
|
)}
|
|
{pageMeta.deprecated && <meta name="robots" content="noindex" />}
|
|
</Head>
|
|
<div className="content-wrap g-container">
|
|
<div id="sidebar" role="complementary">
|
|
<div className="nav docs-nav">
|
|
<DocsSidenav
|
|
currentPage={path}
|
|
category={category}
|
|
order={orderData}
|
|
data={frontMatter}
|
|
Link={Link}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="inner" role="main">
|
|
<Content product="vault" content={children} />
|
|
</div>
|
|
</div>
|
|
<div id="edit-this-page" className="g-container">
|
|
<a
|
|
href={`https://github.com/hashicorp/vault/blob/master/website/pages/${pageMeta.__resourcePath}`}
|
|
>
|
|
<InlineSvg src={githubIcon} />
|
|
<span>Edit this page</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export async function getInitialProps({ asPath }) {
|
|
return { path: asPath }
|
|
}
|