mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
20 lines
503 B
PHP
20 lines
503 B
PHP
|
<?php use LTK\Foundation\ViewHelper; ?>
|
||
|
</div>
|
||
|
</main>
|
||
|
|
||
|
<?php if (ViewHelper::isActiveMenuLocation('footer') || is_active_sidebar('footer')): ?>
|
||
|
<footer class="<?php ViewHelper::getLayoutClass('footer');?>">
|
||
|
<div class="<?php ViewHelper::getLayoutClass('footer-inner');?>">
|
||
|
<?php get_template_part('templates/sidebars/footer'); ?>
|
||
|
<?php ViewHelper::getMenu('footer'); ?>
|
||
|
</div>
|
||
|
</footer>
|
||
|
<?php endif; ?>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<?php wp_footer(); ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|