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

31 lines
No EOL
2.5 KiB
PHP

<?php namespace ProcessWire; ?>
<footer id="pe" class="py-4 border-top text-bg-primary">
<div class="container d-flex flex-wrap justify-content-center justify-content-md-between gap-3 gap-md-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>
<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">
<li class="ms-3"><a class="text-light text-decoration-none" href="#"><i class="icon-facebook"></i></a></li>
<li class="ms-3"><a class="text-light text-decoration-none" href="#"><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">
<img src="<?php echo $config->urls->templates?>images/logo_xuntafalicia.png" alt="Logotipo de la Xunta de Galicia">
<img src="<?php echo $config->urls->templates?>images/logo_unioneuropea.png" alt="Logotipo de la Unión Europea">
<img src="<?php echo $config->urls->templates?>images/logo_golfo_artabro.png" alt="Logotipo de Golfo Artabro Norte">
</a>
</div>
<div class="container d-flex flex-wrap justify-content-between align-items-center">
<p class="text-center 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()): ?>
<p class="text-center fs-6 text"><?php $end = microtime(true); $creationtime = ($end - $start); printf(_x('Page created in %.6f seconds.', 'Render time.'), $creationtime); ?></p>
<?php endif; ?>
</div>
</footer>
<script src="<?php echo $config->urls->templates?>js/main.js"></script>
</body>
</html>