1
0
mirror of https://github.com/flarum/core.git synced 2025-10-13 07:54:25 +02:00

Rejigging templates for redesign.

- Componentize more stuff, heading in the direction of Ember 2.0
- Start CSS from scratch
- Everything is broken atm!
This commit is contained in:
Toby Zerner
2015-01-01 20:08:38 +10:30
parent dc74288915
commit 690174297d
38 changed files with 181 additions and 2981 deletions

View File

@@ -6,14 +6,6 @@ export default Ember.Route.extend({
start: {replace: true}
},
renderTemplate: function() {
this.render();
this.render('discussion-sidebar', {
into: 'application',
outlet: 'sidebar'
});
},
model: function(params) {
return this.store.find('discussion', params.id);
},