Skip to content

Commit 169e1e2

Browse files
committed
init
1 parent ec5577d commit 169e1e2

File tree

147 files changed

+76079
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+76079
-2
lines changed

.DS_Store

8 KB
Binary file not shown.

.eleventy.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = function(eleventyConfig) {
2+
// Add a filter using the Config API
3+
eleventyConfig.addWatchTarget("./src/scss/");
4+
eleventyConfig.setBrowserSyncConfig({
5+
reloadDelay: 400
6+
});
7+
8+
// You can return your Config object (optional).
9+
return {
10+
dir: {
11+
input: "src",
12+
output: "dev"
13+
}
14+
};
15+
};

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
1-
# 11strap
2-
1+
# 11strap = 11ty + Bootstrap5
2+
3+
**Demo**: <a href="https://11winds.io" target="_blank">11strap.io</a>
4+
5+
11winds is a simple boilerplate. It combines the static site generator <a href="https://www.11ty.dev/" target="_blank">11ty</a> with the CSS framework <a href="https://tailwindcss.com/" target="_blank">TailwindCSS</a>. It minifies and purges the CSS file (so it boiles down the TailwindCSS file to a few kb, based on your usage) and comes with a static server and browser sync support for your local development.
6+
7+
## Installation
8+
Download or checkout the master branch of this repo.
9+
Fire up your terminal, go to the new folder and run:
10+
```
11+
npm install
12+
```
13+
Now you are good to go.
14+
15+
## Build it
16+
To build your static website from the `/src`folder run:
17+
```
18+
npm run build
19+
```
20+
To run the build task automatically on file changes run:
21+
```
22+
npm run watch
23+
```

0 commit comments

Comments
 (0)