File: /var/www/compelsupport/wp-content/themes/compel/page-templates/page-menu.php
<?php
/*
 * Template Name: Main menu
 */
 get_header(); ?>
    <div class="container-fluid">
        <!-- Page-Title -->
        <div class="row">
            <div class="col-sm-12">
                <div class="page-title-box">
                    <div class="float-right">
                    </div>
                </div>
                <!--end page-title-box-->
            </div>
            <!--end col-->
        </div>
        <div class="row">
            <div class="col-sm-12">
                <div class="card">
                    <div style="min-height:90vh;" class="card-body">
<?php
if( have_posts() ) :
    while( have_posts() ) : the_post(); ?>
                        <div class="content-wrapper">
                        <h1 style=""><?= the_title(); ?></h1>
                            <div class="content-body">
                                <?= the_content(); ?>
                            </div>
                        <div class="row">
        <?php if (have_rows('menu')) : ?>
            <?php while (have_rows('menu')) : the_row(); ?>
                        <div class="col-12">
                            <div class="menu-list">
                                <h3><?= get_sub_field('title'); ?></h3>
                <?php if (have_rows('menu_items')) : ?>
                                <ul>
                    <?php while (have_rows('menu_items')) : the_row(); ?>
                                    <li>
                                        <?php $post_id = get_sub_field('post'); ?>
                                        <a href="<?= get_permalink($post_id); ?>"><?= get_the_title($post_id); ?></a>
                                    </li>
                    <?php endwhile; ?>
                                </ul>
                <?php endif; ?>
                            </div>
                        </div>
                <?php endwhile; ?>
            <?php endif; ?>
                        </div>
                        </div>
        <?php endwhile; ?>
    <?php endif; ?>
                    </div>
                </div>
                <!--end page-title-box-->
            </div>
            <!--end col-->
        </div>
        <!-- end page title end breadcrumb -->
    </div>
<?php get_footer(); ?>