Skip to content

Commit

Permalink
feat: init
Browse files Browse the repository at this point in the history
  • Loading branch information
load1n9 committed Aug 5, 2024
1 parent d76b623 commit 3d6c2bb
Show file tree
Hide file tree
Showing 6 changed files with 585 additions and 0 deletions.
9 changes: 9 additions & 0 deletions _config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import lume from "lume/mod.ts";
import lumocs from "lumocs/mod.ts";

const site = lume();

site.use(lumocs());


export default site;
23 changes: 23 additions & 0 deletions _data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"lang": "en",
"layout": "page.njk",
"metas": {
"title": "=title",
"site": "Andromeda",
"lang": "en",
"description": "=description"
},
"top_links": [
{
"icon": "fab fa-github",
"title": "GitHub",
"url": "https://github.com/tryandromeda/andromeda"
}
],
"nav_links": [
{
"title": "GitHub",
"url": "https://github.com/tryandromeda/andromeda"
}
]
}
16 changes: 16 additions & 0 deletions deno.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"imports": {
"lume/": "https://deno.land/x/lume@v2.2.4/",
"lumocs/": "https://deno.land/x/lumocs@0.1.2/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s"
},
"compilerOptions": {
"types": [
"lume/types.ts"
]
}
}
Loading

0 comments on commit 3d6c2bb

Please sign in to comment.