diff --git a/blueprints/ember-cli-head/index.js b/blueprints/ember-cli-head/index.js
index 4964b61..f2d6038 100644
--- a/blueprints/ember-cli-head/index.js
+++ b/blueprints/ember-cli-head/index.js
@@ -12,11 +12,11 @@ module.exports = {
if (fs.existsSync(fullPath)) {
let contents = fs.readFileSync(fullPath, { encoding: 'utf-8' });
- let toWrite = `{{head-layout}}\n${contents}`;
+ let toWrite = `\n${contents}`;
fs.writeFileSync(fullPath, toWrite, { encoding: 'utf-8' });
} else {
- let str = `You must add {{head-layout}} component to your topmost UI.
+ let str = `You must add component to your topmost UI.
This is usually your app/templates/application.hbs, but was not found on your system.
Please see the README for more instructions https://github.com/ronco/ember-cli-head#upgrade-to-04x.`