footer.php 910 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * The template for displaying the footer
  4. *
  5. * Contains the closing of the #content div and all content after.
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package UIU_CSE
  10. */
  11. ?>
  12. <footer id="colophon" class="site-footer">
  13. <div class="site-info">
  14. <a href="<?php echo esc_url( __( 'https://wordpress.org/', 'uiu-cse' ) ); ?>">
  15. <?php
  16. /* translators: %s: CMS name, i.e. WordPress. */
  17. printf( esc_html__( 'Proudly powered by %s', 'uiu-cse' ), 'WordPress' );
  18. ?>
  19. </a>
  20. <span class="sep"> | </span>
  21. <?php
  22. /* translators: 1: Theme name, 2: Theme author. */
  23. printf( esc_html__( 'Theme: %1$s by %2$s.', 'uiu-cse' ), 'uiu-cse', '<a href="http://revinr.com/">Mozahidur Rahman Rousnay</a>' );
  24. ?>
  25. </div><!-- .site-info -->
  26. </footer><!-- #colophon -->
  27. </div><!-- #page -->
  28. <?php wp_footer(); ?>
  29. </body>
  30. </html>