index.php 626 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Index Template
  4. *
  5. * Please do not edit this file. This file is part of the Cyber Chimps Framework and all modifications
  6. * should be made in a child theme.
  7. *
  8. * @category CyberChimps Framework
  9. * @package Framework
  10. * @since 1.0
  11. * @author CyberChimps
  12. * @license http://www.opensource.org/licenses/gpl-license.php GPL v3.0 (or later)
  13. * @link http://www.cyberchimps.com/
  14. */
  15. get_header(); ?>
  16. <?php do_action( 'cyberchimps_before_container' ); ?>
  17. <?php do_action( 'cyberchimps_blog_content' ); ?>
  18. <?php do_action( 'cyberchimps_after_container' ); ?>
  19. <?php get_footer(); ?>