HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/td-composer/mobile/home.php
<?php

/*  ----------------------------------------------------------------------------
    the blog index template
 */

if ( td_util::is_amp() ) {
    get_header('amp');
} else {
    get_header();
}

?>

    <div class="td-main-content-wrap td-blog-index">
        <div class="td-container">
            <div class="td-crumb-container">
                <?php

                // show page_for_post title
                echo td_page_generator_mob::get_page_breadcrumbs(get_the_title(get_option('page_for_posts')));

                ?>
            </div>
            <div class="td-main-content">
                <?php
                locate_template('loop.php', true);

                echo td_page_generator_mob::get_pagination();

                ?>
            </div>
        </div> <!-- /.td-container -->
    </div> <!-- /.td-main-content-wrap -->

<?php

if ( td_util::is_amp() ) {
    get_footer('amp');
} else {
    get_footer();
}