Files
OTSSigns-Website/wp-content/themes/ots-signs/footer.php
Matt Batchelder 9fddd43a2c Add custom page templates for Home, Contact, and Services
- Created a new Contact Page template with a contact form and information section.
- Developed a Home Page template featuring a hero section, core capabilities, and pricing details.
- Introduced a Services Page template outlining core services and industry solutions.
- Added a default page template for standard pages without a custom template.
- Implemented a single post template for displaying individual blog posts.
- Created a style.css file for theme metadata and styling.
2026-02-19 09:10:01 -05:00

54 lines
2.3 KiB
PHP

<footer class="site-footer">
<div class="container footer-inner">
<div class="footer-brand">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="site-logo footer-logo">
<span class="logo-text">OTS <strong>Signs</strong></span>
</a>
<p class="footer-tagline">The Complete Digital Signage Solution</p>
<p class="footer-parent">An <a href="https://oribi-tech.com" target="_blank" rel="noopener">Oribi Technology Services</a> product</p>
</div>
<div class="footer-links">
<div class="footer-col">
<h4>Platform</h4>
<ul>
<li><a href="<?php echo esc_url( home_url( '/services' ) ); ?>">Services</a></li>
<li><a href="<?php echo esc_url( home_url( '/#features' ) ); ?>">Features</a></li>
<li><a href="<?php echo esc_url( home_url( '/#pricing' ) ); ?>">Pricing</a></li>
<li><a href="https://demo.ots-signs.com" target="_blank" rel="noopener">Request Demo</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Industries</h4>
<ul>
<li><a href="<?php echo esc_url( home_url( '/services#hospitality' ) ); ?>">Hospitality</a></li>
<li><a href="<?php echo esc_url( home_url( '/services#retail' ) ); ?>">Retail</a></li>
<li><a href="<?php echo esc_url( home_url( '/services#corporate' ) ); ?>">Corporate</a></li>
<li><a href="<?php echo esc_url( home_url( '/services#education' ) ); ?>">Education</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Company</h4>
<ul>
<li><a href="<?php echo esc_url( home_url( '/about' ) ); ?>">About</a></li>
<li><a href="<?php echo esc_url( home_url( '/contact' ) ); ?>">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<p>&copy; <?php echo date( 'Y' ); ?> OTS Signs. All rights reserved.</p>
</div>
</div>
</footer>
<button class="scroll-top" aria-label="Back to top">&#8593;</button>
<?php wp_footer(); ?>
</body>
</html>