Show Brand as ERPNext if brand not specified
diff --git a/erpnext/website/web_cache.py b/erpnext/website/web_cache.py
index 3bd6ca7..163a948 100644
--- a/erpnext/website/web_cache.py
+++ b/erpnext/website/web_cache.py
@@ -119,7 +119,7 @@
 			where parent='Website Settings' and parentfield='footer_items'
 			order by idx asc""", as_dict=1),
 			
-		'brand': webnotes.conn.get_value('Website Settings', None, 'brand_html'),
+		'brand': webnotes.conn.get_value('Website Settings', None, 'brand_html') or 'ERPNext',
 		'copyright': webnotes.conn.get_value('Website Settings', None, 'copyright'),
 		'favicon': webnotes.conn.get_value('Website Settings', None, 'favicon')
 	}