File: /mnt/data/doccure-wp/wp-content/themes/doccure/footer.php
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package doccure
*/
$footer_layout = doccure_get_option('footer-layout', 'layout-1');
?>
</div><!-- #content -->
<?php echo doccure_get_the_page_template('page_template_after_footer', 'enable_page_template_after_footer'); ?>
<?php
if($footer_layout==='layout-2') {
get_template_part('template-parts/footer/layout','2');
} else if($footer_layout==='layout-1') {
get_template_part('template-parts/footer/layout','1');
}
?>
<div class="mouse-cursor cursor-outer"></div>
<div class="mouse-cursor cursor-inner"></div>
</div><!-- #page -->
<!--====== GO TO TOP START ======-->
<?php if (doccure_get_option('back_to_top')=='1') {
?>
<!-- ScrollToTop -->
<div class="progress-wrap active-progress">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98"
style="transition: stroke-dashoffset 10ms linear 0s; stroke-dasharray: 307.919px, 307.919px; stroke-dashoffset: 228.265px;">
</path>
</svg>
</div>
<!-- /ScrollToTop -->
<?php } ?>
<!--====== GO TO TOP ENDS ======-->
<?php
// Before footer hook
do_action('doccure_after_footer');
wp_footer(); ?>
<!-- Cursor -->
<!-- /Cursor -->
</body>
</html>