Skip to content

Instantly share code, notes, and snippets.

@billdami
Last active January 13, 2019 14:58
Show Gist options
  • Save billdami/121253b68c557fe03fb46708041ced59 to your computer and use it in GitHub Desktop.
Save billdami/121253b68c557fe03fb46708041ced59 to your computer and use it in GitHub Desktop.
Gavant Twiddle Template
import Controller from '@ember/controller';
export default Controller.extend({
appName: 'Twiddle Name'
});
<div class="container">
<h1>{{appName}}</h1>
<div class="row mb-5">
<div class="col-12">
<h4>Section #1</h4>
<div></div>
</div>
</div>
<div class="row mb-5">
<div class="col-12">
<h4>Section #2</h4>
<div></div>
</div>
</div>
</div>
{{outlet}}
/* add custom css here */
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": true,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3",
"bootstrap": "https://maxcdn.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
},
"addons": {
"ember-data": "3.4.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment