<script type="text/x-handlebars">
  <p>
    <label>What is your name?</label>
    {{input type="text" value=name}}
  </p>
  <p><strong>
    {{#if name}}
      {{shout}}
    {{else}}
      I WILL SHOUT YOUR NAME!
    {{/if}}
  </strong></p>
</script>
App = Ember.Application.create();

App.ApplicationController = Ember.Controller.extend({
  name: '',
  shout: function() {
    return 'HELLO ' + this.get('name').toUpperCase() + '!';
  }.property('name')
});

External CSS

  1. https://kerricklong.com/css/style.css

External JavaScript

  1. https://kerricklong.com/js/ember-with-deps-1.3.1.js