Skip to content

Commit

Permalink
Initial with basic files
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy-set-studio committed Jun 11, 2019
1 parent 9a101ee commit 367ddc0
Show file tree
Hide file tree
Showing 15 changed files with 5,568 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eleventy.js
@@ -0,0 +1,3 @@
const config = require('./config.js');

module.exports = config;
12 changes: 12 additions & 0 deletions .gitignore
@@ -0,0 +1,12 @@
*.log
npm-debug.*
*.scssc
*.log
*.swp
.DS_Store
.sass-cache
node_modules
dist

# Temp hide posts
src/posts
6 changes: 6 additions & 0 deletions .prettierrc
@@ -0,0 +1,6 @@
{
printWidth: 90,
tabWidth: 2,
singleQuote: true,
bracketSpacing: false
}
15 changes: 15 additions & 0 deletions config.js
@@ -0,0 +1,15 @@
module.exports = function(config) {
// Layout aliases
config.addLayoutAlias('home', 'layouts/home.njk');

// Passthrough copy
config.addPassthroughCopy('src/fonts');

return {
dir: {
input: 'src',
output: 'dist'
},
passthroughFileCopy: true
};
};

0 comments on commit 367ddc0

Please sign in to comment.