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.
53 lines
2.5 KiB
53 lines
2.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Custom template to include the Subscribe Section in Index -->
|
|
<template id="index_subscribe" inherit_id="website.snippets"
|
|
name="Index_Subscribe">
|
|
<xpath expr="//div[@id='snippet_feature']/div[hasclass('o_panel_body')]"
|
|
position="inside">
|
|
<t t-snippet="theme_diva.diva_index_subscribe"
|
|
t-thumbnail="/theme_diva/static/src/images/snippets/index-1/index_subscribe.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
<!-- Custom template for the Subscribe Section in Index -->
|
|
<template id="diva_index_subscribe" name="Index Subscribe">
|
|
<section class="subscribe theme1">
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-5 col-12">
|
|
<div class="sub_head">
|
|
SUBSCRIBE UP FOR OUR NEWSLETTER
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-5 col-md-8 col-12">
|
|
<form class="sub">
|
|
<input id="textEmail"
|
|
class="form-control form-control-sm mr-3"
|
|
aria-label="Search"
|
|
placeholder="EMAIL ADDRESS"/>
|
|
<a type="button" class="enter">Submit</a>
|
|
</form>
|
|
</div>
|
|
<div class="col-lg-2 col-md-4 col-12">
|
|
<form action="#" class="payment">
|
|
<label class="c1">Subscribe
|
|
<input type="radio" checked="checked"
|
|
name="radio"/>
|
|
<span class="checkmark"/>
|
|
</label>
|
|
<label class="c1">Un subscribe
|
|
<input type="radio" name="radio"/>
|
|
<span class="checkmark"/>
|
|
</label>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<p id="demo" class="show_m" style="color: red;"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|