blob: 60292e5840e887a7c24bc4aa00968ea0ce817809 (
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
62
63
64
65
66
67
68
69
70
|
import GlobalFooter from "../components/GlobalFooter.tsx";
import GlobalHeader from "../components/GlobalHeader.tsx";
import PageLayout from "../components/PageLayout.tsx";
import StaticScript from "../components/StaticScript.tsx";
import { Config, getTagLabel } from "../config.ts";
import { dateToString } from "../revision.ts";
import { Slide } from "../slide/slide.ts";
import { getPostPublishedDate } from "../generators/post.ts";
export default function SlidePage(
slide: Slide,
config: Config,
) {
return (
<PageLayout
metaCopyrightYear={getPostPublishedDate(slide).year}
metaDescription={slide.title}
metaKeywords={slide.tags.map((slug) => getTagLabel(config, slug))}
metaTitle={`${slide.event} (${slide.talkType})|${config.blog.siteName}`}
requiresSyntaxHighlight
config={config}
>
<body className="single">
<GlobalHeader config={config} />
<main className="main">
<article className="post-single">
<header className="post-header">
<h1 className="post-title">{slide.title}</h1>
{slide.tags.length !== 0 && (
<ul className="post-tags">
{slide.tags.map((slug) => (
<li className="tag">
<a href={`/tags/${slug}/`}>{getTagLabel(config, slug)}</a>
</li>
))}
</ul>
)}
</header>
<div className="post-content">
<section>
<h2 id="changelog">更新履歴</h2>
<ol>
{slide.revisions.map((rev) => (
<li className="revision">
<time datetime={dateToString(rev.date)}>
{dateToString(rev.date)}
</time>
{`: ${rev.remark}`}
</li>
))}
</ol>
</section>
<canvas id="slide" data-slide-link={slide.slideLink} />
<div>
<button id="prev" type="button">Prev</button>
<button id="next" type="button">Next</button>
</div>
<StaticScript
fileName="/slide.js"
type="module"
config={config}
/>
</div>
</article>
</main>
<GlobalFooter config={config} />
</body>
</PageLayout>
);
}
|