Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ Your project will look something like this…
```
myproject/ <-- your project root (or public dir if in framework-mode)
|- components/ <-- harp puts components here
| +- harp-bootstrap/ <-- where this lib gets installed
| …
| +- harp/ <-- where this lib gets installed
| +- bootstrap/
| …
|- main.less <-- where you reference Bootstrap
+- index.jade <-- where you reference main.css
```
Expand All @@ -32,15 +33,15 @@ myproject/ <-- your project root (or public dir if in framework
Now, from within a `.less` file in your project, you can `@import` Bootstrap:

```less
@import "components/harp-bootstrap/less/_bootstrap.less";
@import "components/harp/bootstrap/3.0.2/less/bootstrap.less";
```

Or, just a portion of Bootstrap:

```less
@import "components/harp-bootstrap/less/_variables.less";
@import "components/harp-bootstrap/less/_mixins.less";
@import "components/harp-bootstrap/less/_grid.less";
@import "components/harp/bootstrap/3.0.2/less/_variables.less";
@import "components/harp/bootstrap/3.0.2/less/_mixins.less";
@import "components/harp/bootstrap/3.0.2/less/_grid.less";
```

## Resources
Expand All @@ -51,4 +52,4 @@ Or, just a portion of Bootstrap:

## License

This component is [Bootstrap](http://github.com/twbs/bootstrap), which is Apache 2.0 licensed.
This component is [Bootstrap](http://github.com/twbs/bootstrap), which is Apache 2.0 licensed.