first commit

This commit is contained in:
Roman Pyrih
2023-07-24 08:30:51 +02:00
commit c2e100a763
7128 changed files with 1622619 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
/**
* The template for displaying the footer and copyrights
*
* Contains footer content and the closing of the main container, row and section. Also closing #canvas and #box_wrapper
*/
if ( ! is_page_template( 'page-templates/full-width.php' ) ) : ?>
</div><!-- eof .row-->
</div><!-- eof .container -->
</section><!-- eof .page_content -->
<?php
endif;
if ( ( is_active_sidebar( 'sidebar-footer' ) ) ) {
$footer = solarify_get_predefined_template_part( 'footer' );
get_template_part( 'template-parts/footer/' . esc_attr( $footer ) );
}
$copyrights = solarify_get_predefined_template_part( 'copyrights' );
get_template_part( 'template-parts/copyrights/' . esc_attr( $copyrights ) );
?>
</div><!-- eof #box_wrapper -->
</div><!-- eof #canvas -->
<?php wp_footer(); ?>
</body>
</html>