You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
886 B
22 lines
886 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Template is for add buttons in the page-->
|
|
<template id="website_scroll_buttons"
|
|
inherit_id="website.footer_custom"
|
|
name="Website Scroll Bottom To Top" active="True">
|
|
<xpath expr="//div[hasclass('row')]" position="inside">
|
|
<div class="o_scroll_buttons website_scroll_buttons">
|
|
<div class="scroll_icon_bottom">
|
|
<button class="scroll_to_bottom" href="#bottom">
|
|
<i class="fa fa-chevron-down"/>
|
|
</button>
|
|
</div>
|
|
<div class="scroll_icon">
|
|
<button class="scroll_to_top" href="#top">
|
|
<i class="fa fa-chevron-up"/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|