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.
130 lines
8.2 KiB
130 lines
8.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="frequently_asked_snippet" inherit_id="website.snippets" name="Frequently Asked">
|
|
<!-- Inherit "website.snippets" to add the 'Our Team' section of the theme_shopping -->
|
|
<xpath expr="//snippets[@id='snippet_groups']"
|
|
position="inside">
|
|
<t t-snippet="theme_shopping.shopping_frequently_asked"
|
|
t-thumbnail="/theme_shopping/static/src/images/snippet_icons/asked-question-snippet.png"/>
|
|
</xpath>
|
|
</template>
|
|
<template id="shopping_frequently_asked" name="Frequently Asked">
|
|
<!-- The above template presents a team section showcasing team members in a grid layout.
|
|
It includes member images, names, and roles. The template follows a responsive design,
|
|
utilizing container elements and CSS classes for proper alignment and styling.
|
|
It offers a visually appealing and organized representation of the team members. -->
|
|
<section class="st-secondary_wrapper">
|
|
<div class="container ">
|
|
<div class="row py-4">
|
|
<div class="col-12 col-md-4 my-md-5">
|
|
<h3 class="st-abt__main--heading">Frequently Asked Questions </h3>
|
|
</div>
|
|
<div class="col-12 col-md-8 my-md-5">
|
|
<div id="accordionExample">
|
|
<div class="accordion-item st-accordion__item">
|
|
<h2 class="accordion-header" id="headingOne">
|
|
<button class="accordion-button st_accordion-btn"
|
|
type="button"
|
|
data-bs-toggle="collapse"
|
|
data-bs-target="#collapseOne"
|
|
aria-expanded="true"
|
|
aria-controls="collapseOne">
|
|
<span style="margin-left:10px !important; padding:5px;"> How to return my product ?</span>
|
|
</button>
|
|
</h2>
|
|
<div id="collapseOne"
|
|
class="accordion-collapse collapse show"
|
|
aria-labelledby="headingOne"
|
|
data-bs-parent="#accordionExample">
|
|
<div class="accordion-body st-accordion__body">
|
|
Lorem Ipsum is simply dummy text of the
|
|
printing and typesetting industry. Lorem
|
|
Ipsum has been the industry's standard
|
|
dummy text ever since the 1500s.Lorem
|
|
Ipsum is simply dummy text of the
|
|
printing and typesetting industry. Lorem
|
|
Ipsum has been the industry's standard dummy
|
|
text ever since the 1500s.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="accordion-item st-accordion__item">
|
|
<h2 class="accordion-header" id="headingTwo">
|
|
<button class="accordion-button collapsed st_accordion-btn"
|
|
type="button"
|
|
data-bs-toggle="collapse"
|
|
data-bs-target="#collapseTwo"
|
|
aria-expanded="false"
|
|
aria-controls="collapseTwo">
|
|
<span style="margin-left:10px !important; padding:5px;"> How to return my product ?</span>
|
|
</button>
|
|
</h2>
|
|
<div id="collapseTwo"
|
|
class="accordion-collapse collapse"
|
|
aria-labelledby="headingTwo"
|
|
data-bs-parent="#accordionExample">
|
|
<div class="accordion-body st-accordion__body">
|
|
<strong>This is the second item's
|
|
accordion body.
|
|
</strong>
|
|
It is hidden by
|
|
default, until the collapse plugin adds
|
|
the appropriate classes that we use to
|
|
style each element. These classes
|
|
control the overall appearance, as well
|
|
as the
|
|
showing and hiding via CSS transitions.
|
|
You can modify any of this with custom
|
|
CSS or overriding our default variables.
|
|
It's also worth noting that just about
|
|
any HTML can go within the <code>
|
|
.accordion-body</code>, though the
|
|
transition
|
|
does limit overflow.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="accordion-item st-accordion__item">
|
|
<h2 class="accordion-header" id="headingThree">
|
|
<button class="accordion-button collapsed st_accordion-btn"
|
|
type="button"
|
|
data-bs-toggle="collapse"
|
|
data-bs-target="#collapseThree"
|
|
aria-expanded="false"
|
|
aria-controls="collapseThree">
|
|
<span style="margin-left:10px !important; padding:5px;"> How to return my product ?</span>
|
|
</button>
|
|
</h2>
|
|
<div id="collapseThree"
|
|
class="accordion-collapse collapse"
|
|
aria-labelledby="headingThree"
|
|
data-bs-parent="#accordionExample">
|
|
<div class="accordion-body st-accordion__body">
|
|
<strong>This is the third item's
|
|
accordion body.
|
|
</strong>
|
|
It is hidden by
|
|
default, until the collapse plugin adds
|
|
the appropriate classes that we use to
|
|
style each element. These classes
|
|
control the overall appearance, as well
|
|
as the
|
|
showing and hiding via CSS transitions.
|
|
You can modify any of this with custom
|
|
CSS or overriding our default variables.
|
|
It's also worth noting that just about
|
|
any HTML can go within the <code>
|
|
.accordion-body</code>, though the
|
|
transition
|
|
does limit overflow.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|
|
|