/home/u336066629/websites/AmAL87tCa/public_html/wp-content/themes/shf/single-project.php
<?php get_header(); ?>

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <?php
        $headTitle = function_exists('get_field') ? get_field('head_title') : '';
        $projectContent = function_exists('get_field') ? get_field('projects_content') : '';
    ?>

    <section class="min-h-screen py-16 text-white relative mx-auto bg-center bg-no-repeat">
        <div class="mx-auto max-w-5xl px-6">

            <?php if ($headTitle): ?>
                <h1 class="text-3xl md:text-4xl font-bold mb-6 text-[#000]"><?php echo esc_html($headTitle); ?></h1>
            <?php endif; ?>

            <?php if ($projectContent): ?>
                <div class="prose prose-invert mb-8 text-[#000] text-lg font-supply">
                    <?php echo wp_kses_post($projectContent); ?>
                </div>
            <?php else: ?>
                <div class="prose prose-invert mb-8 text-[#000] text-lg font-supply">
                    <?php the_content(); ?>
                </div>
            <?php endif; ?>

        </div>
    </section>

<?php endwhile; endif; ?>

<?php get_footer(); ?>