
­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php
if ( ! defined('ABSPATH')) {
    exit;
}
?>

<div class="metabox-holder instances-selector">
    <div id="side-sortables" class="accordion-container">
        <ul class="outer-border">
            <li class="control-section accordion-section">
                <h1 class="multipage accordion-section-title hndle" tabindex="0"><?php echo $title ?></h1>
                <span class="screen-reader-text"><?php _e('Press return or enter to expand', 'giga-messenger-bots'); ?></span>
                <div class="accordion-section-content">
                    <div class="inside">
                        <?php
                        $instances = giga_get_instances();
                        foreach ($instances as $instance) : ?>
                            <a class="instance"
                               href="<?php echo add_query_arg('_instance_id', $instance['id'], remove_query_arg('_action')); ?>">
                                <?php echo ! empty($instance['name']) ? esc_html($instance['name']) : esc_html($instance['id']); ?>
                            </a>
                        <?php endforeach; ?>

                        <a class="instance instance-new"
                           href="<?php echo add_query_arg('_action', 'create', remove_query_arg('_instance_id')); ?>">
                            <?php _e('Create New Page', 'giga-messenger-bots'); ?>
                        </a>
                    </div>
                </div>
            </li>
        </ul>
    </div>
</div>
