praiadeseselle/site/templates/_foot.php

17 lines
975 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-06 13:14:42 +02:00
<?php if(user()->isGuest()): ?>
<p><a href='/es/gestion/acceder'><i class='icon-user'></i> <?php echo _x('Access the Management Panel', 'Access the Management Panel'); ?></a></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>