Init repository

This commit is contained in:
TheThomaas 2023-11-09 21:00:15 +01:00
commit 8e2b685a9e
7 changed files with 2482 additions and 0 deletions

15
.eleventy.js Normal file
View file

@ -0,0 +1,15 @@
module.exports = eleventyConfig => {
eleventyConfig.setUseGitIgnore(false);
return {
markdownTemplateEngine: 'liquid',
dataTemplateEngine: 'liquid',
htmlTemplateEngine: 'liquid',
dir: {
input: 'src',
output: 'dist',
includes: '_includes',
layouts: '_layouts'
}
};
};

1
.eleventyignore Normal file
View file

@ -0,0 +1 @@
node_modules

15
.gitignore vendored Normal file
View file

@ -0,0 +1,15 @@
# Misc
*.log
npm-debug.*
*.scssc
*.swp
.DS_Store
Thumbs.db
.sass-cache
.env
.cache
# Node modules and output
node_modules
dist
src/_includes/css

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

@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#1e3b59",
"activityBar.background": "#1e3b59",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#bf407e",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#1e3b59",
"statusBar.background": "#112233",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#1e3b59",
"statusBarItem.remoteBackground": "#112233",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#112233",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#11223399",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#123"
}

2404
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": "11ty-light-blog",
"version": "1.0.0",
"description": "",
"main": ".eleventy.js",
"scripts": {
"start": "npx eleventy --serve",
"production": "SET NODE_ENV=production npx @11ty/eleventy"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1"
}
}

9
src/pages/index.md Normal file
View file

@ -0,0 +1,9 @@
---
permalink: /index.html
---
## Eleventy demo
Hey ! This is a demo page !
Have fun !