initial code
This commit is contained in:
commit
3ef69501c7
9 changed files with 1260 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
_site
|
||||||
|
_cache
|
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"deno.enable": true
|
||||||
|
}
|
5
_cms.ts
Normal file
5
_cms.ts
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import lumeCMS from "lume/cms/mod.ts";
|
||||||
|
|
||||||
|
const cms = lumeCMS();
|
||||||
|
|
||||||
|
export default cms;
|
15
_config.ts
Normal file
15
_config.ts
Normal 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
17
deno.json
Normal 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"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
3
readme.md
Normal file
3
readme.md
Normal 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
0
src/_includes/layout.vto
Normal file
1
src/index.md
Normal file
1
src/index.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# uwu
|
Loading…
Add table
Reference in a new issue