Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aocenas/layoutize

Create simple layouts fast
https://github.com/aocenas/layoutize

Last synced: 10 days ago
JSON representation

Create simple layouts fast

Awesome Lists containing this project

README

        

# Create simple layouts fast

Example:

```bash
layoutize -i "o3,2,2|3,4"
```
Will create this output:
```
.row
.span2.offset3
.span2
.row
.span3
.span4
```

Or if you like plain html more:
```
layoutize -F html -i "o3,2,2|3,4"








```

Or in javascript:
```javascript
var layoutize = require('layoutize');
var layout = layoutize('o3,2,2|3,4').jade();
layout.html();
layout.jade();
```