This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var PageView = Backbone.View.extend({ | |
el: '#content', | |
template: _.template($('#page-template').html()), | |
events: { | |
'click #back' : 'back', | |
'click #forward' : 'forward', | |
'click #side' : 'side' | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! 5 | |
//if lt IE 7 | |
html(class="no-js ie6 oldie", lang="en") | |
//if IE 7 | |
html(class="no-js ie7 oldie", lang="en") | |
//if IE 8 | |
html(class="no-js ie8 oldie", lang="en") | |
// [if gt IE 8] <! | |
html(class="no-js", lang="en") | |
// <![endif] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! 5 | |
//if lt IE 7 html(class="no-js ie6 oldie", lang="en") | |
//if IE 7 html(class="no-js ie7 oldie", lang="en") | |
//if IE 8 html(class="no-js ie8 oldie", lang="en") | |
//if gt IE8 <!--> <html class="no-js" lang="en"> <!--<![endif] | |
head | |
title= title |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! 5 | |
html | |
head | |
title= title | |
// | |
[if IE8] <!--> <html class="no-js" lang="en"> <!--<![endif] | |
body!= body |
NewerOlder