17 lines
No EOL
975 B
PHP
17 lines
No EOL
975 B
PHP
<?php namespace ProcessWire; ?>
|
|
<footer id="pe">
|
|
<h2 class="visually-hidden"><?php echo _x('Footer', 'Page footer');?></h2>
|
|
<div class="contedor">
|
|
<p>©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(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; ?>
|
|
</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>
|