Merhaba arkadaşlar

Wp sitemde aşağıdaki kodlarda Parse error: syntax error, unexpected end of file in hatası veriyor. Acaba sorunun çözümü nedir? Hata line 74 diyor ve en son satır..

Altta da Site teknik zorluklarla karşılaşıyor uyarısını veriyor.

Kodlar;

<?php get_header(); ?>

<div id="primary" class="site-content col-md-8">

<?php if (my_wp_is_mobile()) : ?>
<div class="mobil-search mb-20">
<?php get_search_form(); ?>
</div>
<?php endif; ?>


<?php if (is_home() || is_front_page() ): ?>
<header class="page-header">
<h3 class="page-title" itemprop="headline">Son Kredi Haberleri</h3>
</header>
<?php endif ?>

<main id="main" class="site-main" role="main" <?php echo get_schema_markup('main-article') ?>>

<?php
if ( have_posts() ) :

/* Start the Loop */
while ( have_posts() ) : the_post(); ?>

<?php get_template_part( 'template-parts/post/content', 'excerpt' ); ?>

<!-- //Sadece Masaüstü Reklam -->
<?php if (!my_wp_is_mobile()) : global $count;?>
<?php if ($count == 0 || $count == 1 ) : ?>
<div class="reklam">
<?php $dekstop_home_ads = cs_get_option('dekstop_home_ads'); ?>
<?php if(!empty($dekstop_home_ads)):
echo $dekstop_home_ads;
endif;
?>
</div>
<?php endif; $count++; ?>
<?php endif; ?>
<!-- //Sadece Masaüstü Reklam -->

<!-- // Sadece Mobil Reklam -->
<?php if (my_wp_is_mobile()) : global $say; ?>
<?php if ($say == 0 || $say == 1 || $say == 2 ) : ?>
<div class="reklam">
<?php $mobil_home_ads = cs_get_option('mobil_home_ads'); ?>
<?php if(!empty($mobil_home_ads)):
echo $mobil_home_ads;
endif;
?>
</div>
<?php endif; $say++; ?>
<?php endif; ?>
<!-- // Sadece Mobil Reklam -->

<?endwhile;

numeric_bootstrap_posts_nav();

else :

get_template_part( 'template-parts/post/content', 'none' );

endif;
?>

</main>
<!-- // Site Main -->
</div>
<!-- // Primary -->

<?php get_sidebar(); ?>

<?php get_footer(); ?>