Files
Rogers_Motors_Theme/page.php
2024-03-20 17:38:18 -04:00

24 lines
356 B
PHP

<?php
/**
* Standard Page template.
*
* @package ThemeStarter
*/
?>
<!-- Get Header -->
<?php get_header(); ?>
<?php get_template_part('template-parts/partials/page-header') ?>
<!-- Single Page Template -->
<section>
<div class="max-w-7xl mx-auto px-4">
<?php the_content() ?>
</div>
</section>
<!-- Get Footer -->
<?php get_footer(); ?>