Init repository
This commit is contained in:
commit
8e2b685a9e
15
.eleventy.js
Normal file
15
.eleventy.js
Normal 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
1
.eleventyignore
Normal file
|
|
@ -0,0 +1 @@
|
|||
node_modules
|
||||
15
.gitignore
vendored
Normal file
15
.gitignore
vendored
Normal 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
22
.vscode/settings.json
vendored
Normal 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
2404
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
16
package.json
Normal file
16
package.json
Normal 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
9
src/pages/index.md
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
permalink: /index.html
|
||||
---
|
||||
|
||||
## Eleventy demo
|
||||
|
||||
Hey ! This is a demo page !
|
||||
|
||||
Have fun !
|
||||
Loading…
Reference in a new issue