<?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?>
<rss xmlns:yandex="http://news.yandex.ru" xmlns:media="http://search.yahoo.com/mrss/" xmlns:turbo="http://turbo.yandex.ru" version="2.0">
    <channel>
        <title><?php echo e(config('ayarlar.baslik')); ?></title>
        <link><?php echo e(config('ayarlar.siteadresi')); ?></link>
        <description><?php echo e(config('ayarlar.seodesc')); ?></description>
        <language>tr</language>
        <?php $__currentLoopData = $haberler; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $haber): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
            <?php
                $text = $haber->metadesc;
                $detay = $haber->detay;
                $image = '<p><img class="center" src="' . url('images/haberler/'.$haber->resim) . '"  alt="' . $haber->baslik . '"/></p>';
                $description = '<header>
                        <h1>'.$haber->baslik.'</h1>
                        <h2>'.$text.'</h2>
                        <figure>
                        <img src="'.url("images/haberler/".$haber->resim).'">
                        <figcaption>'.$haber->baslik.'</figcaption>
                    </figure>
                    </header>';
                $rssdetay = '<![CDATA['. $description.$detay . ']]>';
            ?>
        <item turbo="true">
            <link><?php echo e(url('haber/'.$haber->slug.'-'.$haber->id)); ?></link>
            <category><?php echo e($haber->haberkat->baslik); ?></category>
            <pubDate><?php echo e(date('r',strtotime($haber->tarih))); ?></pubDate>
            <turbo:content>
                <?php echo $rssdetay; ?>

            </turbo:content>
        </item>
        <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
    </channel>
</rss>
<?php /**PATH /home/yeniistik/public_html/resources/views/frontend/tema9/rssYandex.blade.php ENDPATH**/ ?>