add updated at date in the footer

This commit is contained in:
Dmitriy Pleshevskiy 2022-06-21 00:01:06 +03:00
parent 133476e2cf
commit 9485386d81
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215

View file

@ -30,10 +30,20 @@ function navLink(lhref: string, ctx?: Context): Attrs {
return attrs; return attrs;
} }
const SERVER_STARTED_AT = new Date();
export function Footer(ctx: Context): AnyNode { export function Footer(ctx: Context): AnyNode {
return E("footer", classNames("footer"), [ return E("footer", classNames("footer"), [
E("div", classNames("content-width row-sta-bet"), [ E("div", classNames("content-width row-sta-bet"), [
RepoLink(ctx.tr.Source_code, "/pleshevskiy/recipes"), E("div", classNames("gap-v-1x5"), [
E("div", [], [
E("b", [], "Updated At:"),
SERVER_STARTED_AT.toLocaleDateString(),
]),
E("div", [], [
RepoLink(ctx.tr.Source_code, "/pleshevskiy/recipes"),
]),
]),
ChangeLang(ctx), ChangeLang(ctx),
]), ]),
]); ]);