added website page, home, patch
diff --git a/erpnext/website/page/home/home.html b/erpnext/website/page/home/home.html
new file mode 100644
index 0000000..3c1bc5e
--- /dev/null
+++ b/erpnext/website/page/home/home.html
@@ -0,0 +1,17 @@
+#!python
+
+from webnotes.model.doc import getsingle
+
+home_settings = getsingle('Home Settings')
+
+html= """
+<div class="layout_wrapper">
+	<div id="content-home">
+		%(banner_html)s
+	</div>
+</div>
+""" % home_settings
+
+out = {
+	"content": html
+}
\ No newline at end of file