diff --git a/app/templates/layouts/landing-page.hbs b/app/templates/layouts/landing-page.hbs
new file mode 100644
index 00000000..22546b2e
--- /dev/null
+++ b/app/templates/layouts/landing-page.hbs
@@ -0,0 +1,7 @@
+
+ {{render "top"}}
+
+
+{{render "flash"}}
+
+{{yield}}
diff --git a/app/views/home.coffee b/app/views/home.coffee
index a33e0330..06446f76 100644
--- a/app/views/home.coffee
+++ b/app/views/home.coffee
@@ -1,6 +1,6 @@
`import BasicView from 'travis/views/basic'`
View = BasicView.extend
- layoutName: 'layouts/simple'
+ layoutName: 'layouts/landing-page'
`export default View`