2021-07-25 07:16:35 -04:00
|
|
|
<?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 WPRDNYC
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace WP_RDNYC;
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
2021-08-04 07:46:55 -04:00
|
|
|
<footer class="footer mt-auto py-3 text-center">
|
2021-07-25 07:16:35 -04:00
|
|
|
|
2021-08-04 07:46:55 -04:00
|
|
|
<span class="text-gray-400 fs-smaller">© <?php echo date("Y") ?> Recovery Dharma NYC</span>
|
2021-07-25 07:16:35 -04:00
|
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
2021-11-10 17:23:36 -05:00
|
|
|
<?php
|
|
|
|
if (is_front_page()) :
|
|
|
|
?>
|
|
|
|
<img
|
|
|
|
src="<?php echo get_template_directory_uri() . '/dist/images/svg-roll-mandala.svg'; ?>"
|
|
|
|
class="img roll-mandala" aria_hidden="true"
|
|
|
|
>
|
|
|
|
<?php
|
|
|
|
endif;
|
|
|
|
?>
|
|
|
|
|
2021-07-25 07:16:35 -04:00
|
|
|
</body>
|
|
|
|
</html>
|