17 lines
287 B
HTML
Raw Normal View History

2012-01-25 10:37:35 +05:30
#!python
from webnotes.model.doc import getsingle
2012-01-25 11:04:54 +05:30
from jinja2 import Template
2012-01-25 10:37:35 +05:30
2012-01-25 11:04:54 +05:30
temp = Template("""
2012-01-25 10:37:35 +05:30
<div class="layout_wrapper">
<div id="content-home">
2012-01-25 11:04:54 +05:30
{{ home_settings.banner_html }}
2012-01-25 10:37:35 +05:30
</div>
</div>
2012-01-25 11:04:54 +05:30
""")
2012-01-25 10:37:35 +05:30
out = {
2012-01-25 11:04:54 +05:30
"content": temp.render(home_settings = getsingle('Home Settings'))
2012-01-25 10:37:35 +05:30
}