To create a specific page layout in odoo-9 you have to first install odoo website builder module and after then at the top you need to ass a whole list of services and provide the possibility of settings to the user interface for the rest of the page layout.
For example you can use below code in your src file.
<?xml version="1.0" encoding="utf-8" ?>
<openerp>
<data>
<!-- === Services Page === -->
<template name="Services page" id="website.services" page="True">
<h1> Services</h1>
<ul class="services">
<li>Cloud Hosting</li>
<li>test</li>
<li>demo space</li>
</ul>
</template>
</data>
</openerp>
0 Comment(s)