blob: 3c1bc5ea9adc923ec5aabc35fa8c6c6e2767ad7a [file] [log] [blame]
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +05301#!python
2
3from webnotes.model.doc import getsingle
4
5home_settings = getsingle('Home Settings')
6
7html= """
8<div class="layout_wrapper">
9 <div id="content-home">
10 %(banner_html)s
11 </div>
12</div>
13""" % home_settings
14
15out = {
16 "content": html
17}