initial code

This commit is contained in:
Lio 2024-10-05 00:49:21 +02:00
commit 3ef69501c7
9 changed files with 1260 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
_site
_cache

3
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"deno.enable": true
}

5
_cms.ts Normal file
View file

@ -0,0 +1,5 @@
import lumeCMS from "lume/cms/mod.ts";
const cms = lumeCMS();
export default cms;

15
_config.ts Normal file
View file

@ -0,0 +1,15 @@
import lume from "lume/mod.ts";
import tailwindcss from "lume/plugins/tailwindcss.ts";
import sass from "lume/plugins/sass.ts";
import postcss from "lume/plugins/postcss.ts";
const site = lume({
src: "./src",
});
site.use(tailwindcss());
site.use(sass());
site.use(postcss());
export default site;

17
deno.json Normal file
View file

@ -0,0 +1,17 @@
{
"imports": {
"lume/": "https://deno.land/x/lume@v2.3.2/",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.6.5/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"cms": "deno task lume cms"
},
"compilerOptions": {
"types": [
"lume/types.ts"
]
}
}

1214
deno.lock generated Normal file

File diff suppressed because it is too large Load diff

3
readme.md Normal file
View file

@ -0,0 +1,3 @@
# Bloodbath
Seeing as this is v8 of my site and I plan on ripping things out of the currently running v6 (twilight) and the never published v7 (lotus), this name seemed appropriate lmao

0
src/_includes/layout.vto Normal file
View file

1
src/index.md Normal file
View file

@ -0,0 +1 @@
# uwu