Added directory structure

This commit is contained in:
Taras Mankovski 2014-02-27 07:20:30 -05:00
parent d456281668
commit 988a127a3e
10 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,5 @@
export default Ember.Component.extend({
time: function() {
return new Date();
}.property()
});

View File

View File

@ -0,0 +1,3 @@
export default Ember.Controller.extend({
message: 'its a new beginning.'
});

View File

View File

View File

View File

@ -1,3 +1,5 @@
<h2 id='title'>Welcome to Ghost on Ember.js</h2>
{{message}}
{{outlet}}

View File

@ -0,0 +1 @@
Time is now {{time}}

View File

@ -1 +1,3 @@
<em>This is the index route</em>
<em>This is the index route</em>
{{time-now}}

View File