This commit is contained in:
parent
3ccf7b7d74
commit
51753e16bb
1 changed files with 2 additions and 2 deletions
|
@ -9,12 +9,12 @@ const tr = E.bind(null, "tr", []);
|
||||||
const td = E.bind(null, "td", []);
|
const td = E.bind(null, "td", []);
|
||||||
const th = E.bind(null, "th", []);
|
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";
|
ctx.title = "Works | Pleshevski";
|
||||||
|
|
||||||
return PageLayout(ctx, [
|
return PageLayout(ctx, [
|
||||||
E("div", classNames("content-width gap-v-1x5 responsive-typography"), [
|
E("div", classNames("content-width gap-v-1x5 responsive-typography"), [
|
||||||
content,
|
// content,
|
||||||
H3(ctx.tr.Chronological),
|
H3(ctx.tr.Chronological),
|
||||||
ChronologicalWorksTable(ctx, CHRONOLOGICAL_WORKS),
|
ChronologicalWorksTable(ctx, CHRONOLOGICAL_WORKS),
|
||||||
]),
|
]),
|
||||||
|
|
Loading…
Reference in a new issue