praiadeseselle/site/templates/_foot.php
2022-10-27 21:16:19 +02:00

17 lines
No EOL
994 B
PHP

<?php namespace ProcessWire; ?>
<footer id="pe">
<h2 class="visually-hidden"><?php echo _x('Footer', 'Page footer');?></h2>
<div class="contedor">
<p>&copy;2022 <?php echo $configuracion['sitio_nome']
. ' ' . $configuracion['sitio_descripcion']; ?>.</p>
<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>
<?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; ?>
</div>
</footer>
<script src="<?php echo $config->urls->templates?>js/swiper.js"></script>
<script src="<?php echo $config->urls->templates?>js/main.js"></script>
</body>
</html>