feat: add some works
This commit is contained in:
parent
58c0f976af
commit
24de15be58
2 changed files with 36 additions and 4 deletions
10
makefile
10
makefile
|
@ -4,11 +4,19 @@ PAR := $(MAKE) -j 128
|
||||||
watch:
|
watch:
|
||||||
$(PAR) hr ts-w
|
$(PAR) hr ts-w
|
||||||
|
|
||||||
|
build: ts
|
||||||
|
|
||||||
|
start:
|
||||||
|
node target/scripts/main.mjs
|
||||||
|
|
||||||
hr:
|
hr:
|
||||||
deno run -A ~/sandbox/hr/server.ts target static
|
deno run -A ~/sandbox/hr/server.ts target static
|
||||||
|
|
||||||
|
ts:
|
||||||
|
npx tsc
|
||||||
|
|
||||||
ts-w:
|
ts-w:
|
||||||
NODE_ENV=develop npx tsc-watch --onSuccess "node target/scripts/main.mjs"
|
NODE_ENV=develop npx tsc-watch --onSuccess "make start"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf target
|
rm -rf target
|
||||||
|
|
|
@ -1,8 +1,32 @@
|
||||||
import { PageLayout } from "../components/page_layout.mjs";
|
import { PageLayout } from "../components/page_layout.mjs";
|
||||||
import { AnyNode } from "ren";
|
import { AnyNode, Ea } from "ren";
|
||||||
import { div, p } from "../utils.mjs";
|
import { div, h3, li, ul } from "../utils.mjs";
|
||||||
import { Context } from "../context.mjs";
|
import { Context } from "../context.mjs";
|
||||||
|
|
||||||
export function WorksPage(ctx: Context): AnyNode {
|
export function WorksPage(ctx: Context): AnyNode {
|
||||||
return PageLayout(ctx, div({ class: "content-width" }, p("Works")));
|
return PageLayout(
|
||||||
|
ctx,
|
||||||
|
div({ class: "content-width responsive-typography" }, [
|
||||||
|
h3("Одни из моих последних работ"),
|
||||||
|
ul([
|
||||||
|
li(Ea("a", { href: "https://github.com/pleshevskiy/ren" }, "ren")),
|
||||||
|
li(Ea("a", { href: "https://github.com/pleshevskiy/hwt" }, "hwt")),
|
||||||
|
li(
|
||||||
|
Ea(
|
||||||
|
"a",
|
||||||
|
{ href: "https://github.com/pleshevskiy/sonic-channel" },
|
||||||
|
"sonic-channel"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
li(Ea("a", { href: "https://github.com/pleshevskiy/migra" }, "migra")),
|
||||||
|
li(
|
||||||
|
Ea(
|
||||||
|
"a",
|
||||||
|
{ href: "https://github.com/pleshevskiy/itconfig-rs" },
|
||||||
|
"itconfig-rs"
|
||||||
|
)
|
||||||
|
),
|
||||||
|
]),
|
||||||
|
])
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue