works: hide highlighted content
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Dmitriy Pleshevskiy 2023-05-03 15:27:04 +03:00
parent 3ccf7b7d74
commit 51753e16bb
Signed by: pleshevskiy
GPG Key ID: 79C4487B44403985
1 changed files with 2 additions and 2 deletions

View File

@ -9,12 +9,12 @@ const tr = E.bind(null, "tr", []);
const td = E.bind(null, "td", []);
const th = E.bind(null, "th", []);
export function WorksPage(ctx: Context, content: AnyNode): AnyNode {
export function WorksPage(ctx: Context, _content: AnyNode): AnyNode {
ctx.title = "Works | Pleshevski";
return PageLayout(ctx, [
E("div", classNames("content-width gap-v-1x5 responsive-typography"), [
content,
// content,
H3(ctx.tr.Chronological),
ChronologicalWorksTable(ctx, CHRONOLOGICAL_WORKS),
]),