These are the Ember London intro slides.
Every month’s slide deck lives in its own branch. The naming convention is YYYY-MM
.
Please submit a PR against the desired month with the slides you’d like to add.
- Declare a route at the desired point
- Create a template to match
For example, to add a slide called foo
:
// app/router.js
Router.map(function() {
this.route('line-up');
this.route('sapient');
this.route('announcements');
this.route('ember-london');
this.route('ember-london-stats');
this.route('upcoming-events');
this.route('slack');
this.route('forum');
this.route('website');
this.route('datablast');
this.route('foo'); // <--- Foo goes here
this.route('on-to-the-talks');
});
Tweets may be added with the x-tweet
component: