blob: a07fe939b54a525d954638b84cb0b2978e6c7974 [file] [log] [blame]
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +05301#!python
2
3from webnotes.model.doc import getsingle
Rushabh Mehta9c7a01a2012-01-25 11:04:54 +05304from jinja2 import Template
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +05305
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +05306
Rushabh Mehta9c7a01a2012-01-25 11:04:54 +05307temp = Template("""
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +05308<div class="layout_wrapper">
9 <div id="content-home">
Rushabh Mehta9c7a01a2012-01-25 11:04:54 +053010 {{ home_settings.banner_html }}
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +053011 </div>
12</div>
Rushabh Mehta9c7a01a2012-01-25 11:04:54 +053013""")
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +053014
15out = {
Rushabh Mehta9c7a01a2012-01-25 11:04:54 +053016 "content": temp.render(home_settings = getsingle('Home Settings'))
Rushabh Mehtaa8ad3902012-01-25 10:37:35 +053017}