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(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|