14 lines
No EOL
764 B
PHP
14 lines
No EOL
764 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['nome_sitio']
|
|
. ' ' . $configuracion['descripcion_sitio']; ?>.</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>
|
|
</div>
|
|
</footer>
|
|
<script src="<?php echo $config->urls->templates?>js/main.js"></script>
|
|
<script src="<?php echo $config->urls->templates?>js/swiper.js"></script>
|
|
</body>
|
|
</html>
|