change options to render date
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dmitriy Pleshevskiy 2023-02-03 03:03:53 +03:00
parent 3dc9e7d2ca
commit 84a4377853
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
1 changed files with 6 additions and 2 deletions

View File

@ -30,7 +30,11 @@ function navLink(lhref: string, ctx?: Context): Attrs {
return attrs;
}
const SERVER_STARTED_AT = new Date();
const SERVER_STARTED_AT = new Date().toLocaleDateString(undefined, {
year: "numeric",
month: "2-digit",
day: "2-digit",
});
export function Footer(ctx: Context): AnyNode {
return E("footer", classNames("footer"), [
@ -38,7 +42,7 @@ export function Footer(ctx: Context): AnyNode {
E("div", classNames("gap-v-1x5"), [
E("div", [], [
E("b", [], "Updated At:"),
SERVER_STARTED_AT.toLocaleDateString(),
SERVER_STARTED_AT,
]),
E("div", [], [
RepoLink(ctx.tr.Source_code, "/pleshevskiy/pleshevski.ru"),