48 lines
916 B
PHP
48 lines
916 B
PHP
<?php
|
|
/**
|
|
* The template for displaying the footer
|
|
*
|
|
* Contains the closing of the `#content` element and all content thereafter.
|
|
*
|
|
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
|
|
*
|
|
* @package WowPress
|
|
*/
|
|
|
|
?>
|
|
|
|
</div><!-- #content -->
|
|
<?php
|
|
if ($GLOBALS['wowpress']['widget_area']['right'] !== false) :
|
|
?>
|
|
<div class="widget-wrapper right-widgets">
|
|
<div id="demo-widget" class="widget">
|
|
<h3>Titel Right 1</h3>
|
|
</div>
|
|
<div id="demo-widget" class="widget">
|
|
<h3>Titel Right 2</h3>
|
|
</div>
|
|
</div>
|
|
<?php
|
|
endif;
|
|
if ($GLOBALS['wowpress']['widget_area']['bottom'] !== false) :
|
|
?>
|
|
<div class="widget-wrapper bottom-widgets">
|
|
<div id="demo-widget" class="widget">
|
|
<h3>Titel Bottom 1</h3>
|
|
</div>
|
|
<?php get_template_part('template-parts/layout/footer', 'content'); ?>
|
|
|
|
</div>
|
|
<?php
|
|
endif;
|
|
?>
|
|
</div> <!-- grid -->
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|