RSS Feed
Contensio publishes a standard RSS 2.0 feed at /feed — no setup required.
Your site automatically publishes an RSS 2.0 feed at /feed. Readers can subscribe in any feed reader by pointing it at https://your-site.com/feed.
What's included
The feed contains the 20 most recently published posts (newest first). Each item includes:
- Title
- Permalink (as
<link>and<guid>) - Publication date
- Description — the post excerpt if set, otherwise the first 300 characters of the body
- Author name (
<dc:creator>)
Pages and custom content types are not included — only the built-in Post type.
Feed URL
The feed is available at /feed. The named route is contensio.feed.
To link to the feed in your theme's <head> (for feed auto-discovery):
<link rel="alternate" type="application/rss+xml"
title="{{ $site['name'] }}"
href="{{ route('contensio.feed') }}">
Customising the feed
The feed view is contensio::frontend.feed. To override it, publish the Contensio views:
php artisan vendor:publish --tag=contensio-views
Then edit resources/views/vendor/contensio/frontend/feed.blade.php. The view is standard Blade — it receives $posts, $site, and $lang.