# 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" ```