Skip to content

Instantly share code, notes, and snippets.

@ouaziz
Last active June 3, 2016 13:40
Show Gist options
  • Save ouaziz/39d5c23d7576bdc1a87b7580097b8267 to your computer and use it in GitHub Desktop.
Save ouaziz/39d5c23d7576bdc1a87b7580097b8267 to your computer and use it in GitHub Desktop.
ember exemple
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember exemple'
});
import Ember from 'ember';
export default Ember.Route.extend({
});
import Ember from 'ember';
export default Ember.Route.extend({
});
<h2>About Super Rentals</h2>
<p>The Super Rentals website is a delightful project created to explore Ember.
By building a property rental site, we can simultaneously imagine traveling
AND building Ember applications.</p>
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
<br>
<br>
<p>Super Rentals Representatives would love to help you choose a destination or answer
any questions you may have.</p>
<p>Contact us today:</p>
<p>
Super Rentals HQ
<address>
1212 Test Address Avenue<br>
Testington, OR 97233
</address>
</p>
<p><a href="tel:503.555.1212">(503)555-1212</a></p>
<p><a href="mailto:superrentalsrep@superrentals.com">superrentalsrep@superrentals.com</a></p>
{
"version": "0.8.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.js",
"ember": "2.5.1",
"ember-data": "2.5.1",
"ember-template-compiler": "2.5.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment