Просмотр файла resources/views/layout_rss.blade.php

Размер файла: 879B
<?php header("Content-type:application/rss+xml; charset=utf-8"); ?>

<?= '<?xml version="1.0" encoding="utf-8"?>' ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>@yield('title') {{ setting('title') }}</title>
        <link>{{ siteUrl() }}/</link>
        <description>Сообщения RSS - {{ setting('title') }}</description>
        <image>
            <url>{{ siteUrl() }}{{ setting('logotip') }}</url>
            <title>Сообщения RSS - {{ setting('title') }}</title>
            <link>{{ siteUrl() }}/</link>
        </image>
        <managingEditor>{{ env('SITE_EMAIL') }} ({{ env('SITE_ADMIN') }})</managingEditor>
        <webMaster>{{ env('SITE_EMAIL') }} ({{ env('SITE_ADMIN') }})</webMaster>
        <lastBuildDate>{{ date('r', SITETIME) }}</lastBuildDate>

            @yield('content')

    </channel>
</rss>