HEX
Server: Apache
System: Linux webm019.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: petsclubcc (68997)
PHP: 5.4.45
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/petsclubcc/LinkersIT.com/wp-content/themes/toka/single.php
<?php
/**
 * The template for displaying single posts and pages.
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 * @since Toka 1.0
 */

get_header(); ?>
<main id="site-content" class="flex-grow-1 <?php
if (!is_page_template('page-templates/template-full-width-page-without-header-title.php')) {
    echo 'nav-white-desktop';
} else {
    echo 'nav-black-desktop';
}
?>" role="main">
    <div class="container-xl blog-post">
        <div class="row">

            <div class="col-lg-8 pb-45 pb-lg-0 mx-auto">
                <?php

                if (have_posts()) {


                    if (!is_search()) {
                        get_template_part('template-parts/featured-media');
                    }


                    while (have_posts()) {
                        the_post();

                        get_template_part('template-parts/content', get_post_type());
                    }
                }

                ?>
            </div>

            <?php if (is_active_sidebar('blog-sidebar')) { ?>
                <div class="col-lg-4">
                    <?php
                    dynamic_sidebar('blog-sidebar'); ?>
                </div>
            <?php } ?>

        </div>
    </div>
</main><!-- #site-content -->

<?php get_footer(); ?>