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.
52 lines
3.1 KiB
52 lines
3.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="about_us_team" inherit_id="website.snippets" name="Our Team">
|
|
<!-- Inherit "website.snippets" to add the 'Our Team' section of the theme_shopping -->
|
|
<xpath expr="//div[@id='snippet_structure']/div[hasclass('o_panel_body')]"
|
|
position="inside">
|
|
<t t-snippet="theme_shopping.shopping_our_team"
|
|
t-thumbnail="/theme_shopping/static/src/images/snippet_icons/team-block.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
<template id="shopping_our_team" name="Our Team">
|
|
<!-- 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 py-5">
|
|
<h3 class="st-abt__main--heading">Introducing our team members</h3>
|
|
<div class="row my-md-5">
|
|
<div class=" col-6 col-md-3">
|
|
<div class="st-aboutus_team-imgcontainer">
|
|
<img src="/theme_shopping/static/src/images/team-member1.png" alt="team"
|
|
class="st-auto-image img-fluid"/>
|
|
</div>
|
|
<span class="st-aboutus_light--text d-block ">Project Manager</span>
|
|
</div>
|
|
<div class=" col-6 col-md-3">
|
|
<div class="st-aboutus_team-imgcontainer">
|
|
<img src="/theme_shopping/static/src/images/team-member2.png" alt="team"
|
|
class="st-auto-image img-fluid"/>
|
|
</div>
|
|
<span class="st-aboutus_light--text d-block ">Marketing Manager</span>
|
|
</div>
|
|
<div class=" col-6 col-md-3">
|
|
<div class="st-aboutus_team-imgcontainer">
|
|
<img src="/theme_shopping/static/src/images/team-member3.png" alt="team"
|
|
class="st-auto-image img-fluid"/>
|
|
</div>
|
|
<span class="st-aboutus_light--text d-block ">Developer</span>
|
|
</div>
|
|
<div class=" col-6 col-md-3">
|
|
<div class="st-aboutus_team-imgcontainer">
|
|
<img src="/theme_shopping/static/src/images/team-member4.png" alt="team"
|
|
class="st-auto-image img-fluid"/>
|
|
</div>
|
|
<span class="st-aboutus_light--text d-block ">Designer</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|