PHP Classes

File: resources/views/layouts/rss.blade.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Heloise Laravel Blog Package   resources/views/layouts/rss.blade.php   Download  
File: resources/views/layouts/rss.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Heloise Laravel Blog Package
Simple blog system with comments and RSS feed
Author: By
Last change:
Date: 7 months ago
Size: 440 bytes
 

Contents

Class file image Download
<?xml version="1.0" encoding="UTF-8"?>
<rss
    version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:atom="http://www.w3.org/2005/Atom"
>
    <channel>
        <title>{{ config('app.name', 'My Blog') }}</title>
        <link>{{ url()->current() }}</link>
        <description>The latest blog posts</description>
        @yield('content')
    </channel>
</rss>