45 lines
1.8 KiB
PHP
45 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* The footer, mirroring the original site's three-column footer.
|
|
*/
|
|
$hl_biz = hogelandlinux_business();
|
|
?>
|
|
<footer>
|
|
<div class="container">
|
|
<div class="footer-content">
|
|
<div class="footer-section">
|
|
<h3><?php echo esc_html( $hl_biz['name'] ); ?></h3>
|
|
<p>Specialist in Linux-migratie en duurzaam computergebruik.</p>
|
|
<p><strong>📍 Gevestigd in <?php echo esc_html( $hl_biz['village'] ); ?></strong></p>
|
|
<p><em>Werkzaam in gemeente Het Hogeland en de stad Groningen</em></p>
|
|
</div>
|
|
<div class="footer-section">
|
|
<h3>Contact</h3>
|
|
<p>Geen bezoekadres - ik doe uitsluitend huisbezoeken.</p>
|
|
<p><?php echo esc_html( $hl_biz['street'] ); ?></p>
|
|
<p><?php echo esc_html( $hl_biz['postal'] . ' ' . $hl_biz['village'] ); ?></p>
|
|
<p>Email: <a href="mailto:<?php echo esc_attr( $hl_biz['email'] ); ?>"><?php echo esc_html( $hl_biz['email'] ); ?></a></p>
|
|
<p>KvK: <?php echo esc_html( $hl_biz['kvk'] ); ?></p>
|
|
</div>
|
|
<div class="footer-section">
|
|
<h3>Gemeenschap</h3>
|
|
<p>Lid van de <a href="https://nllgg.nl" target="_blank">Nederlandse Linux Gebruikers Groep</a></p>
|
|
<p>Actief bij het <a href="https://buurtlinux.nl" target="_blank">Buurtlinux.nl</a> initiatief</p>
|
|
<p>Vrijwilliger bij <a href="https://laptoprevive.nl" target="_blank">Laptoprevive.nl</a></p>
|
|
<p>Ik ondersteun de <a href="https://endof10.org" target="_blank">End-of-10</a>-beweging voor duurzaam computergebruik.</p>
|
|
<p>
|
|
<a href="<?php echo esc_url( home_url( '/over-mij/' ) ); ?>">Over mij</a>
|
|
·
|
|
<a href="<?php echo esc_url( home_url( '/contact/' ) ); ?>">Contact</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<p>© <?php echo esc_html( date( 'Y' ) ); ?> <?php echo esc_html( $hl_biz['name'] ); ?>. Alle rechten voorbehouden.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|