17 lines
240 B
HTML
Raw Normal View History

2012-01-25 10:37:35 +05:30
#!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
}