-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from coltborg/try-11ty
Try 11ty
- Loading branch information
Showing
10 changed files
with
2,505 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module.exports = function (eleventyConfig) { | ||
// Pass static files | ||
eleventyConfig.addPassthroughCopy("style.css"); | ||
|
||
// Watch targets | ||
eleventyConfig.addWatchTarget("./style.css"); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules/ | ||
README.md | ||
_drafts/ | ||
_site/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"editor.fontSize": 14, | ||
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace", | ||
"workbench.colorTheme": "GitHub Dark", | ||
"editor.renderWhitespace": "all", | ||
"editor.minimap.enabled": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"type": "npm", | ||
"script": "install", | ||
"group": "clean", | ||
"problemMatcher": [], | ||
"label": "npm: install", | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
}, | ||
"detail": "install dependencies from package" | ||
}, | ||
{ | ||
"label": "Run 11ty server", | ||
"type": "shell", | ||
"command": "npx @11ty/eleventy --serve", | ||
"group": "build", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"problemMatcher": [] | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,19 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="color-scheme" content="light dark"> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="color-scheme" content="light dark" /> | ||
<title>Cyby.dev</title> | ||
<link href="style.css" rel="stylesheet"> | ||
<link href="/style.css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Cyby.dev</h1> | ||
<p>A blog about tech and stuff.</p> | ||
</header> | ||
<main> | ||
🚧 Under construction 🚧 | ||
<ul> | ||
<li><a href="/blog/test">Blog post test</a></li> | ||
</ul> | ||
🚧 Under construction 🚧 | ||
</main> | ||
</body> | ||
</html> | ||
|
Oops, something went wrong.