praiadeseselle/site/templates/_foot.php

17 lines
994 B
PHP
Raw Normal View History

2022-03-10 01:47:18 +01:00
<?php namespace ProcessWire; ?>
<footer id="pe">
<h2 class="visually-hidden"><?php echo _x('Footer', 'Page footer');?></h2>
2022-03-10 01:47:18 +01:00
<div class="contedor">
2022-10-06 10:54:15 +02:00
<p>&copy;2022 <?php echo $configuracion['sitio_nome']
. ' ' . $configuracion['sitio_descripcion']; ?>.</p>
2022-03-10 01:47:18 +01:00
<p><?php echo _x('All rights reserved', 'copyright');?></p>
<p><?php echo _x('Designed and Developed by', 'developer');?> <a target="_blank" href="https://artabro.org">Codigo Artabro</a></p>
2022-10-27 14:10:14 +02:00
<?php if($mantemento && $user->isLoggedin()): ?>
<p><?php $end = microtime(true); $creationtime = ($end - $start); printf(_x('Page created in %.6f seconds.', 'Render time.'), $creationtime); ?></p>
<?php endif; ?>
2022-03-10 01:47:18 +01:00
</div>
</footer>
<script src="<?php echo $config->urls->templates?>js/swiper.js"></script>
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>