praiadeseselle/site/templates/layout/partial/main_foot.php

32 lines
2.7 KiB
PHP
Raw Normal View History

2022-03-10 01:47:18 +01:00
<?php namespace ProcessWire; ?>
2023-02-21 14:48:37 +01:00
<footer id="pe" class="footer mt-auto py-4 border-top text-bg-primary">
2023-02-27 17:10:20 +01:00
<div class="container d-flex flex-wrap justify-content-center justify-content-md-between gap-0 align-items-center">
<div class="col-md-5 d-flex align-items-center">
<a href="/" class="mb-3 me-2 mb-md-0 text-light text-decoration-none lh-1">
<picture class="me-2">
<img src="<?php echo $config->urls->templates?>images/logo-mini.png" alt="<?php echo _x('Logo of Praia de Seselle Tourist Apartments', 'Site logo'); ?>">
</picture>
</a>
2023-02-21 14:48:37 +01:00
<span class="mb-3 mb-md-0 text-light">&copy; 2022 <?php echo $configuracion['sitio_nome'] . ' ' . $configuracion['sitio_descripcion']; ?>.<br>Todos los derechos reservados.</span>
</div>
<ul class="nav col-md-2 justify-content-center list-unstyled d-flex fs-4">
2023-03-11 11:41:24 +01:00
<li class="p-3"><a class="text-light text-decoration-none" target="_blank" href="<?php echo $configuracion['rrss_facebook']; ?>"><i class="icon-facebook"></i></a></li>
<li class="p-3"><a class="text-light text-decoration-none" target="_blank" href="<?php echo $configuracion['rrss_instagram']; ?>"><i class="icon-instagram"></i></a></li>
</ul>
<a href="https://galp.xunta.gal/costa-da-morte" class="col-md-5 d-flex gap-3 align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none">
2023-02-27 17:10:20 +01:00
<img class="w-100" src="<?php echo $config->urls->templates?>images/logo_xuntafalicia.png" alt="Logotipo de la Xunta de Galicia">
<img class="w-100" src="<?php echo $config->urls->templates?>images/logo_unioneuropea.png" alt="Logotipo de la Unión Europea">
<img class="w-100" src="<?php echo $config->urls->templates?>images/logo_golfo_artabro.png" alt="Logotipo de Golfo Artabro Norte">
</a>
</div>
2023-02-27 17:10:20 +01:00
<div class="container d-flex flex-wrap justify-content-center justify-content-lg-between align-items-center">
<p class="text-center m-0 fs-6 text"><?php echo _x('Designed and Developed by', 'developer');?> <a class="text-light" target="_blank" href="https://artabro.org">Codigo Artabro</a></p>
<?php if($user->isLoggedin()): ?>
2023-02-27 17:10:20 +01:00
<p class="text-center m-0 fs-6 text"><?php $end = microtime(true); $creationtime = ($end - $start); printf(_x('Page created in %.6f seconds.', 'Render time.'), $creationtime); ?></p>
2022-10-27 14:10:14 +02:00
<?php endif; ?>
</div>
2022-03-10 01:47:18 +01:00
</div>
</footer>
2022-05-03 12:18:01 +02:00
<script src="<?php echo $config->urls->templates?>js/main.js"></script>
2022-03-09 18:09:44 +01:00
</body>
</html>