<?php $__env->startPush("head"); ?>
    <title>Günlük Gazete Manşetleri - <?php echo e(config('ayarlar.baslik')); ?></title>
    <meta name="description" content="<?php echo e(config('ayarlar.baslik')); ?> - Günlük Gazete Manşetleri, Bütün Basılı Gazetelerin Birinci Sayfaları" />
<?php $__env->stopPush(); ?>
<?php $__env->startSection("content"); ?>
    <?php if(isset($gazeteler)): ?>
        <?php
        $say = count($gazeteler);
        $s = $_GET['s'];
        ?>

        <?php if(empty($s)): ?>
        <?php
            $s = 0;
        ?>
            <?php elseif($say == $s+1): ?>
            <?php
                $ileri = 1;
            ?>
            <?php else: ?>
            <?php
                $ileri = intval($s)+1;
            ?>
        <?php endif; ?>
        <section>
            <div class="archive-header text-center mb-30">
                <h1><span class="font-weight-ultra">Günlük Gazete Manşetleri</span></h1>
                <div class="breadcrumb">
                    <a href="<?php echo e(url('/')); ?>">Ana Sayfa</a>
                    <span></span> Günlük Gazete Manşetleri
                </div>
            </div>
        </section>
        <section class="pt-30 pb-30 bg-white box-shadow mt-15 mb-30">
            <div class="container">
                <div class="row">
                    <div class="col-md-12">
                        <ul class="list-inline gazetelist pl-0">
                            <?php $__currentLoopData = $gazeteler; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                                <li class="list-inline-item mr-0">
                                    <a class="text-dark" href="<?php echo e(url('gazete-mansetleri/?s='.$key)); ?>" title="<?php echo e($value->gazete_isim); ?>">
                                        <i class="font-small ti-angle-right"></i> <?php echo e(str_replace("Gazetesi","",$value->gazete_isim)); ?>

                                    </a>
                                </li>
                            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
                        </ul>
                        <div class="mt-20 text-center">
                            <a href="./gazete-mansetleri/?s=<?php if(isset($ileri)): ?><?php echo e($ileri); ?><?php endif; ?>">
                                <img class="img-fluid" alt="<?php echo e($gazeteler[$s]->gazete_isim); ?>" src="<?php echo e($gazeteler[$s]->gazete_resim); ?>" />
                            </a>
                        </div>
                    </div>
                </div>
            </div>
        </section>
    <?php endif; ?>
<?php $__env->stopSection(); ?>

<?php $__env->startPush("customJs"); ?>
<?php $__env->stopPush(); ?>

<?php $__env->startPush("customCss"); ?>
<?php $__env->stopPush(); ?>

<?php echo $__env->make('frontend.'.$temaadi.'.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/yeniistik/public_html/resources/views/frontend/tema9/gunlukGazeteler.blade.php ENDPATH**/ ?>