26 lines
1.7 KiB
PHP
26 lines
1.7 KiB
PHP
|
<?php namespace ProcessWire; ?>
|
||
|
<div class="container d-flex flex-wrap justify-content-between align-items-center" pw-append="pe">
|
||
|
<div class="col-md-4 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">© 2022 <?php echo $configuracion['sitio_nome'] . ' ' . $configuracion['sitio_descripcion']; ?>.</span>
|
||
|
</div>
|
||
|
<a href="/" class="col-md-4 d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-dark text-decoration-none">
|
||
|
<picture class="me-2">
|
||
|
<img src="<?php echo $config->urls->templates?>images/edlp.jpg" alt="Axudas para proxectos EDLP">
|
||
|
</picture>
|
||
|
</a>
|
||
|
<ul class="nav col-md-4 justify-content-end 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>
|
||
|
<div class="col-md-12 py-3">
|
||
|
<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>
|
||
|
</div>
|