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.
89 lines
4.5 KiB
89 lines
4.5 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<template id="custom_message" inherit_id="website.layout"
|
|
name="Custom Header and Footer">
|
|
<!-- This is a custom header and footer template for a website, which includes -->
|
|
<!-- HTML, CSS, and FontAwesome links in the header, and a customized footer-->
|
|
<!-- with product and service information, contact details, and social media links.-->
|
|
<!-- Header-->
|
|
<xpath expr="//div[@id='wrapwrap']/main" position="before">
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="stylesheet"
|
|
href="/theme_college/static/src/css/theme_college.css"/>
|
|
<link rel="stylesheet"
|
|
href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
|
|
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ"
|
|
crossorigin="anonymous"/>
|
|
</head>
|
|
</html>
|
|
</xpath>
|
|
<!-- Footer-->
|
|
<xpath expr="//div[@id='footer']" position="replace">
|
|
<footer class="footer">
|
|
<div class="container" id="footer">
|
|
<div class="row">
|
|
<div class="col-12 col-lg-4 col-md-12 col-sm-12">
|
|
<div class="footer_part">
|
|
<h4>Our Product and Services</h4>
|
|
<p class="fp">
|
|
<a href="/" class="btn btn-quoteF">Home</a>
|
|
</p>
|
|
<p class="fp">
|
|
<a href="/livechat" class="btn btn-quoteF">
|
|
Live Chat Support
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-4 col-md-6 col-sm-12">
|
|
<h4>Contact Us</h4>
|
|
<address class="fp">
|
|
<div t-field="res_company.partner_id"
|
|
t-options='{
|
|
"widget": "contact",
|
|
"fields": ["name", "address", "phone", "mobile", "email"]}'/>
|
|
</address>
|
|
<div class="footer_icons">
|
|
<ul>
|
|
<a href="#">
|
|
<li class="fab fa-facebook-f fb"
|
|
aria-hidden="true"/>
|
|
</a>
|
|
<a href="#">
|
|
<li class="fab fa-twitter tw"
|
|
aria-hidden="true"/>
|
|
</a>
|
|
<a href="#">
|
|
<li class="fab fa-google-plus-g gg"
|
|
aria-hidden="true"/>
|
|
</a>
|
|
<a href="#">
|
|
<li class="fab fa-dribbble dr"
|
|
aria-hidden="true"/>
|
|
</a>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 col-lg-4 col-md-6 col-sm-12">
|
|
<h4>About Us</h4>
|
|
<p class="fp">
|
|
We are a team of passionate people whose goal is
|
|
to improve
|
|
everyone's life through disruptive products. We
|
|
build great products
|
|
to solve your business problems.
|
|
Our products are designed for small to medium
|
|
size companies
|
|
willing to optimize their performance.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|
|
|