index.php 537 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * The main template file
  4. *
  5. * This is the most generic template file in a WordPress theme
  6. * and one of the two required files for a theme (the other being style.css).
  7. * It is used to display a page when nothing more specific matches a query.
  8. * E.g., it puts together the home page when no home.php file exists.
  9. *
  10. * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
  11. *
  12. * @package Quadrat
  13. * @since 1.0.0
  14. */
  15. get_header();
  16. // the query
  17. echo gutenberg_block_template_part( 'index' );
  18. get_footer();