Create 11ty site

This commit is contained in:
Julien Negrotto 2025-04-16 17:26:16 -05:00
commit 91bd239830
5 changed files with 2221 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
# Node dependencies
node_modules/
# Build files
_site/

12
index.html Normal file
View File

@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>crawfi.sh</title>
</head>
<body>
...
</body>
</html>

5
justfile Normal file
View File

@ -0,0 +1,5 @@
dev:
npx @11ty/eleventy --serve
build:
npx @11ty/eleventy

2182
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "crawfish",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@11ty/eleventy": "^3.0.0"
}
}