April 2016
Beginner to intermediate
400 pages
9h 16m
English
In this recipe, we'll see how to add custom style sheets and JavaScript to the website.
Create an empty module named ch13_r01 and install it in your test database. Make sure this module depends on the website module, as we use some of its functionality.
Override the main website template to inject your code:
views/templates.xml and add an empty view override:<odoo>
<template id="assets_frontend" inherit_id="website.assets_frontend">
<xpath expr="." position="inside">
<!-- points 2 & 3 go here /-->
</xpath>
</template>
</odoo><link href="/ch13_r01/static/src/css/ch13_r01.css" rel="stylesheet" type="text/css"/>