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.
49 lines
2.4 KiB
49 lines
2.4 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="rozzz_subscribe_snippet" inherit_id="website.snippets"
|
|
name="Subscribe">
|
|
<!-- Inherit "website.snippets" to add the 'Subscribe Snippet' section of the cts_theme_rozz -->
|
|
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
|
|
position="inside">
|
|
<t t-snippet="cts_theme_rozz.s_rozz_subscribe_snippet"
|
|
t-thumbnail="/cts_theme_rozz/static/src/images/snippets/Rozz-subscribe-block.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
<template id="s_rozz_subscribe_snippet" name="Rozz Subscribe">
|
|
<!-- The above template showcases a subscription area with a responsive layout.
|
|
It includes a title inviting users to stay updated and a subscription form with an
|
|
email input field and a "Subscribe" button. The template effectively utilizes
|
|
HTML markup and CSS classes for a visually appealing and functional design. -->
|
|
<section>
|
|
<div class="subscribe-area">
|
|
<div class="subscribe-wrap">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-6">
|
|
<div class="section-title">
|
|
<h2>Stay Up To Date With Our Latest News!
|
|
</h2>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<form class="newsletter-form"
|
|
data-toggle="validator">
|
|
<input type="email" class="form-control"
|
|
placeholder="Enter your email"
|
|
name="EMAIL" required=""
|
|
autocomplete="off"/>
|
|
|
|
<button class="btn cmn-btn" type="submit">
|
|
Subscribe
|
|
</button>
|
|
<div id="validator-newsletter"
|
|
class="form-result"/>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|