blob: 1cd0aebf297d6fca65f8e3a3633c5f4e2edd50f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
import { Config } from "../config.ts";
import { JSXNode } from "myjsx/jsx-runtime";
import StaticStylesheet from "./StaticStylesheet.tsx";
type Props = {
metaCopyrightYear: number;
metaDescription: string;
metaKeywords?: string[];
metaTitle: string;
metaAtomFeedHref?: string;
requiresSyntaxHighlight?: boolean;
config: Config;
children: JSXNode;
};
export default function PageLayout(
{
metaCopyrightYear,
metaDescription,
metaKeywords,
metaTitle,
metaAtomFeedHref,
requiresSyntaxHighlight: _,
config,
children,
}: Props,
) {
return (
<html lang="ja-JP">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content={config.blog.author} />
<meta
name="copyright"
content={`© ${metaCopyrightYear} ${config.blog.author}`}
/>
<meta name="description" content={metaDescription} />
{metaKeywords && metaKeywords.length !== 0 &&
<meta name="keywords" content={metaKeywords.join(",")} />}
<meta property="og:type" content="article" />
<meta property="og:title" content={metaTitle} />
<meta property="og:description" content={metaDescription} />
<meta property="og:site_name" content={config.blog.siteName} />
<meta property="og:locale" content="ja_JP" />
{metaAtomFeedHref &&
(
<link
rel="alternate"
href={metaAtomFeedHref}
type="application/atom+xml"
/>
)}
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<title>{metaTitle}</title>
<StaticStylesheet fileName="/style.css" config={config} />
</head>
{children}
</html>
);
}
|