Sha256: b3c2c39db51b0e40dce30cb1da829e7c573fc94a774614a85ff5e24722915917

Contents?: true

Size: 468 Bytes

Versions: 4

Compression:

Stored size: 468 Bytes

Contents

# Backbone View Tutorial

Below is an example of how you can style a backbone view.

## Template Content

First write a basic template.

```slim
nav.nav.navbar-inverse
  .container
    .row-fluid
```

## Style Content

Make the text pink, because it is manly.

```scss
nav.navbar-inverse {
  color: pink;
}
```

## Script Content

Then you'll wanna do some stuff with the coffeescript.

```coffeescript
MyView = Backbone.View.extend
  className: "navbar-inverse"
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
brief-0.0.5 spec/fixtures/front_end_tutorial.md
brief-0.0.4 spec/fixtures/front_end_tutorial.md
brief-0.0.3 spec/fixtures/front_end_tutorial.md
brief-0.0.2 spec/fixtures/front_end_tutorial.md