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.
144 lines
6.4 KiB
144 lines
6.4 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="rozzz_portfolio_page" inherit_id="website.snippets"
|
|
name="Portfolio">
|
|
<!-- Inherit "website.snippets" to add the 'Portfolio' 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_portfolio_page"
|
|
t-thumbnail="/cts_theme_rozz/static/src/images/snippets/Rozz-portfolio-block.jpg"/>
|
|
</xpath>
|
|
</template>
|
|
<template id="s_rozz_portfolio_page" name="Portfolio Page">
|
|
<!-- This template demonstrates an effective layout for showcasing multiple items in a portfolio.
|
|
It utilizes a grid-based structure with images, titles, and links, providing a visually appealing
|
|
and organized presentation of the portfolio items. -->
|
|
<section>
|
|
<div class="page-title-area Portfolio">
|
|
<div class="d-table">
|
|
<div class="d-table-cell">
|
|
<div class="container">
|
|
<div class="title-item">
|
|
<h2>Portfolio</h2>
|
|
<ul>
|
|
<li>
|
|
<a href="/?">Home</a>
|
|
</li>
|
|
<li>
|
|
<i class='bx bx-chevrons-right'/>
|
|
</li>
|
|
<li>
|
|
<span>Portfolio</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<section class="project-area ptb-100">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-6 col-lg-6">
|
|
<div class="project-item">
|
|
<div class="project-top">
|
|
<a href="#">
|
|
<img src="/cts_theme_rozz/static/src/images/home-one/interm.jpg"
|
|
alt="Project"/>
|
|
</a>
|
|
</div>
|
|
<h3>
|
|
<a href="#">Interim Car
|
|
Service
|
|
</a>
|
|
</h3>
|
|
<a href="#">Service Details</a>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6 col-lg-6">
|
|
<div class="project-item">
|
|
<div class="project-top two">
|
|
<a href="#">
|
|
<img src="/cts_theme_rozz/static/src/images/home-one/full-service.jpg"
|
|
alt="Project"/>
|
|
</a>
|
|
</div>
|
|
<h3>
|
|
<a href="#">Full Car
|
|
Service
|
|
</a>
|
|
</h3>
|
|
<a href="#">Service Details</a>
|
|
</div>
|
|
<div class="project-item">
|
|
<div class="project-top two">
|
|
<a href="portfolio-details.html">
|
|
<img src="/cts_theme_rozz/static/src/images/home-one/oil.jpg"
|
|
alt="Project"/>
|
|
</a>
|
|
</div>
|
|
<h3>
|
|
<a href="#">Major Car
|
|
Service
|
|
</a>
|
|
</h3>
|
|
<a href="#">Service Details</a>
|
|
</div>
|
|
</div>
|
|
<div class=" col-sm-6 col-lg-6">
|
|
<div class="project-item">
|
|
<div class="project-top">
|
|
<a href="portfolio-details.html">
|
|
<img src="/cts_theme_rozz/static/src/images/home-one/headlamp.jpg"
|
|
alt="Project"/>
|
|
</a>
|
|
</div>
|
|
<h3>
|
|
<a href="#">Head Lamp
|
|
Restoration
|
|
</a>
|
|
</h3>
|
|
<a href="#">Service Details</a>
|
|
</div>
|
|
</div>
|
|
<div class=" col-sm-6 col-lg-6">
|
|
<div class="project-item">
|
|
<div class="project-top">
|
|
<a href="portfolio-details.html">
|
|
<img src="/cts_theme_rozz/static/src/images/home-one/wheel-service.jpg"
|
|
alt="Project"/>
|
|
</a>
|
|
</div>
|
|
<h3>
|
|
<a href="#">Wheel Care
|
|
Service
|
|
</a>
|
|
</h3>
|
|
<a href="#">Service Details</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="pagination-area">
|
|
<ul>
|
|
<li>
|
|
<a href="#">Prev</a>
|
|
</li>
|
|
<li>
|
|
<a href="#">1</a>
|
|
</li>
|
|
<li>
|
|
<a href="#">2</a>
|
|
</li>
|
|
<li>
|
|
<a href="#">3</a>
|
|
</li>
|
|
<li>
|
|
<a href="#">Next</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
</odoo>
|
|
|