footer.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * The template for displaying the footer
  4. *
  5. * Contains the closing of the "site-content" div and all content after.
  6. *
  7. * @package WordPress
  8. * @subpackage Twenty_Fifteen
  9. * @since Twenty Fifteen 1.0
  10. */
  11. ?>
  12. </div><!-- .site-content -->
  13. <footer id="colophon" class="site-footer" role="contentinfo">
  14. <div class="site-info">
  15. <?php
  16. /**
  17. * Fires before the Twenty Fifteen footer text for footer customization.
  18. *
  19. * @since Twenty Fifteen 1.0
  20. */
  21. do_action( 'twentyfifteen_credits' );
  22. ?>
  23. <p>
  24. <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Licencia de Creative Commons" style="border-width:0" src="https://licensebuttons.net/l/by-nc-sa/4.0/88x31.png" /></a>Esta obra está bajo una <a rel="license" href="https://creativecommons.org/licenses/by-nc-sa/4.0/">licencia de Creative Commons Reconocimiento-NoComercial-CompartirIgual 4.0 Internacional</a>.
  25. Vea <a href="wp-content/themes/twentyfifteen/js/libreJS.html" data-jslicense="1">aquí</a> la información de las licencias del código JavaScript utilizado.
  26. </p>
  27. </div><!-- .site-info -->
  28. </footer><!-- .site-footer -->
  29. </div><!-- .site -->
  30. <?php wp_footer(); ?>
  31. </body>
  32. </html>