diff options
Rewrote Site in 11ty
Still need to Update the content
Diffstat (limited to 'src/server/content/index.ts')
-rw-r--r-- | src/server/content/index.ts | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/server/content/index.ts b/src/server/content/index.ts deleted file mode 100644 index 6eaa3de..0000000 --- a/src/server/content/index.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { c } from "../template/vdom.js" -import code from "../template/syntax.js" -import Page from "../template/Page.js" -import { pre } from "../template/html.js" - -Page({ - title: "Welcome", - url: "/", - isHighlight: true, - content() { - return c(pre, { class: "pad", }, - "$ ", c(code, { lang: "bash" }, "sudo cat ~root/msg"), - ` -Hello World! -Welcome to my blog. -I occassion leave my writings here. Hope you will enjoy them :). -$` - ) - } -}).setupRoute() |