Nearing completion

This commit is contained in:
prospect
2024-01-11 06:17:07 -05:00
parent 7843c7b084
commit b345ca70da
62 changed files with 1672 additions and 24 deletions

View File

@@ -42,11 +42,14 @@ get_header(); ?>
$pageBootstrapIcon = get_field('bootstrap_icon', $subpage->ID);
if (is_page($pageSlug)) {
get_template_part('/templates/partials/page_header');
get_template_part('/templates/internal/' . $pageSlug); ?>
get_template_part('/templates/partials/page_header'); ?>
<div class="max-w-7xl mx-auto">
<?php get_template_part('/templates/internal/' . $pageSlug); ?>
</div>
<!-- Page Editor Content -->
<div class="prose max-w-7xl mx-auto">
<?php the_content(); ?>
<?php /** the_content(); */ ?>
</div>
<?php }
}