Initial Commit from Ember CLI v2.5.0
This commit is contained in:
18
app/app.js
Normal file
18
app/app.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import Ember from 'ember';
|
||||
import Resolver from './resolver';
|
||||
import loadInitializers from 'ember-load-initializers';
|
||||
import config from './config/environment';
|
||||
|
||||
let App;
|
||||
|
||||
Ember.MODEL_FACTORY_INJECTIONS = true;
|
||||
|
||||
App = Ember.Application.extend({
|
||||
modulePrefix: config.modulePrefix,
|
||||
podModulePrefix: config.podModulePrefix,
|
||||
Resolver
|
||||
});
|
||||
|
||||
loadInitializers(App, config.modulePrefix);
|
||||
|
||||
export default App;
|
||||
0
app/components/.gitkeep
Normal file
0
app/components/.gitkeep
Normal file
0
app/controllers/.gitkeep
Normal file
0
app/controllers/.gitkeep
Normal file
0
app/helpers/.gitkeep
Normal file
0
app/helpers/.gitkeep
Normal file
25
app/index.html
Normal file
25
app/index.html
Normal file
@@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>FiasFace</title>
|
||||
<meta name="description" content="">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
{{content-for "head"}}
|
||||
|
||||
<link rel="stylesheet" href="assets/vendor.css">
|
||||
<link rel="stylesheet" href="assets/fias-face.css">
|
||||
|
||||
{{content-for "head-footer"}}
|
||||
</head>
|
||||
<body>
|
||||
{{content-for "body"}}
|
||||
|
||||
<script src="assets/vendor.js"></script>
|
||||
<script src="assets/fias-face.js"></script>
|
||||
|
||||
{{content-for "body-footer"}}
|
||||
</body>
|
||||
</html>
|
||||
0
app/models/.gitkeep
Normal file
0
app/models/.gitkeep
Normal file
3
app/resolver.js
Normal file
3
app/resolver.js
Normal file
@@ -0,0 +1,3 @@
|
||||
import Resolver from 'ember-resolver';
|
||||
|
||||
export default Resolver;
|
||||
11
app/router.js
Normal file
11
app/router.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import Ember from 'ember';
|
||||
import config from './config/environment';
|
||||
|
||||
const Router = Ember.Router.extend({
|
||||
location: config.locationType
|
||||
});
|
||||
|
||||
Router.map(function() {
|
||||
});
|
||||
|
||||
export default Router;
|
||||
0
app/routes/.gitkeep
Normal file
0
app/routes/.gitkeep
Normal file
0
app/styles/app.css
Normal file
0
app/styles/app.css
Normal file
3
app/templates/application.hbs
Normal file
3
app/templates/application.hbs
Normal file
@@ -0,0 +1,3 @@
|
||||
<h2 id="title">Welcome to Ember</h2>
|
||||
|
||||
{{outlet}}
|
||||
0
app/templates/components/.gitkeep
Normal file
0
app/templates/components/.gitkeep
Normal file
Reference in New Issue
Block a user