Add theme_3d_systems/views/footer.xml
This commit is contained in:
parent
3fb3a0242f
commit
90c5953b3b
1 changed files with 90 additions and 0 deletions
90
theme_3d_systems/views/footer.xml
Normal file
90
theme_3d_systems/views/footer.xml
Normal file
|
|
@ -0,0 +1,90 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<!-- Custom Enterprise 3D Systems Footer -->
|
||||||
|
<template id="template_footer_3d_systems" inherit_id="website.layout" name="3D Systems Enterprise Footer">
|
||||||
|
<xpath expr="//footer" position="replace">
|
||||||
|
<footer class="o_footer_3d_systems bg-darker text-light pt-5 pb-4 position-relative overflow-hidden">
|
||||||
|
<!-- Glowing geometric grid background line -->
|
||||||
|
<div class="footer-grid-overlay"></div>
|
||||||
|
|
||||||
|
<div class="container position-relative z-index-1">
|
||||||
|
<div class="row g-4 mb-5">
|
||||||
|
<!-- Column 1: Brand & Bio -->
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
<a href="/" class="d-inline-flex align-items-center gap-2 mb-3 text-decoration-none">
|
||||||
|
<span class="brand-cube-icon">
|
||||||
|
<span class="cube-inner"></span>
|
||||||
|
</span>
|
||||||
|
<span class="brand-text fs-4">
|
||||||
|
<span class="text-white fw-bold">SYSTEMS</span><span class="text-gradient-cyan">.3D</span>
|
||||||
|
</span>
|
||||||
|
</a>
|
||||||
|
<p class="text-muted small pe-lg-4 mb-4">
|
||||||
|
Architecting high-performance custom web systems, intelligent Odoo ERP transformations, and automated digital workflows for progressive enterprises worldwide.
|
||||||
|
</p>
|
||||||
|
<div class="d-flex align-items-center gap-3 social-links-3d">
|
||||||
|
<a href="#" class="social-icon" aria-label="GitHub"><i class="fa fa-github"></i></a>
|
||||||
|
<a href="#" class="social-icon" aria-label="LinkedIn"><i class="fa fa-linkedin"></i></a>
|
||||||
|
<a href="#" class="social-icon" aria-label="Twitter"><i class="fa fa-twitter"></i></a>
|
||||||
|
<a href="#" class="social-icon" aria-label="Discord"><i class="fa fa-gamepad"></i></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Column 2: Solutions -->
|
||||||
|
<div class="col-lg-2 col-md-6 col-6">
|
||||||
|
<h6 class="text-white fw-bold mb-3 tracking-wide">Solutions</h6>
|
||||||
|
<ul class="list-unstyled footer-menu-list">
|
||||||
|
<li><a href="/odoo-solutions">Odoo ERP Suite</a></li>
|
||||||
|
<li><a href="/services">Web Systems</a></li>
|
||||||
|
<li><a href="/services">Business Automation</a></li>
|
||||||
|
<li><a href="/services">Custom Dashboards</a></li>
|
||||||
|
<li><a href="/services">API Integrations</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Column 3: Company -->
|
||||||
|
<div class="col-lg-2 col-md-6 col-6">
|
||||||
|
<h6 class="text-white fw-bold mb-3 tracking-wide">Company</h6>
|
||||||
|
<ul class="list-unstyled footer-menu-list">
|
||||||
|
<li><a href="/about-us">About Us</a></li>
|
||||||
|
<li><a href="/portfolio">Portfolio</a></li>
|
||||||
|
<li><a href="/about-us">Engineering Tech</a></li>
|
||||||
|
<li><a href="/contactus">Careers</a></li>
|
||||||
|
<li><a href="/contactus">Contact Support</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Column 4: Newsletter & System Status -->
|
||||||
|
<div class="col-lg-4 col-md-6">
|
||||||
|
<h6 class="text-white fw-bold mb-3 tracking-wide">System Updates</h6>
|
||||||
|
<p class="text-muted small mb-3">
|
||||||
|
Subscribe to our monthly architecture briefs and Odoo release insights.
|
||||||
|
</p>
|
||||||
|
<div class="newsletter-box position-relative mb-3">
|
||||||
|
<div class="input-group">
|
||||||
|
<input type="email" class="form-control bg-glass border-glass text-white" placeholder="Enter your work email" aria-label="Work Email"/>
|
||||||
|
<button class="btn btn-gradient-primary px-3" type="button">Subscribe</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="system-status-indicator d-flex align-items-center gap-2">
|
||||||
|
<span class="status-live-dot"></span>
|
||||||
|
<span class="small text-muted">All Core Services Operational (99.98% SLA)</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="border-top border-dark-subtle pt-4 d-flex flex-column flex-md-row justify-content-between align-items-center text-muted small gap-3">
|
||||||
|
<div>
|
||||||
|
&copy; <span t-esc="time.strftime('%Y')"/> Systems 3D Solutions Inc. Built natively for Odoo 19.
|
||||||
|
</div>
|
||||||
|
<div class="d-flex gap-4">
|
||||||
|
<a href="/privacy" class="text-muted text-decoration-none hover-white">Privacy Policy</a>
|
||||||
|
<a href="/terms" class="text-muted text-decoration-none hover-white">Terms of Service</a>
|
||||||
|
<a href="/security" class="text-muted text-decoration-none hover-white">Security Architecture</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</xpath>
|
||||||
|
</template>
|
||||||
|
</odoo>
|
||||||
Loading…
Reference in a new issue