Our.Community.RssView
Property editor for adding an RSS feed viewer to you Umbraco web site.
The property stores the feed Url and uses a property value converter to fetch the feed and make it available as a strongly typed model in your views.
Displaying in a View
@inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage<ContentModels.HomePage>
@using ContentModels = Umbraco.Cms.Web.Common.PublishedModels;
@using Our.Community.RssView.Models
@using static Our.Community.RssView.Extensions.DateTimeOffsetExtensions
@{
Layout = null;
var rssFeed =Model.Value<FeedResult>("rssFeedUrl");
}
@if (rssFeed != null && rssFeed.HasFeedResults)
{
<h2>@rssFeed.SyndicationFeed.Title.Text</h2>
<h3 class="muted">(@rssFeed.FeedUrl)</h3>
<div class="container">
<div class="row">
@foreach (var feedItem in rssFeed.SyndicationFeed.Items.Take(5))
{
<div class="col-4"><h4>@feedItem.Title.Text</h4><h6 class="muted">@feedItem.PublishDate.ToTimeAgo()<br />@feedItem.PublishDate.ToString("hh:mmtt dddd, dd MMM yyyy")</h6><div>@Html.Raw(feedItem.Summary.Text)</div><a class="btn btn-primary" title="@feedItem.Title.Text" href="@feedItem.Links[0].Uri">Read more...</a></div>
}
</div>
</div>
}
Biz & IT - Ars Technica
(https://feeds.arstechnica.com/arstechnica/technology-lab)
Chaos erupts as cyberattack disrupts learning platform Canvas amid finals
06:33PM Friday, 08 May 2026
Across the country, schools and colleges postpone year-end tests.
Read More ..Mozilla says 271 vulnerabilities found by Mythos have "almost no false positives"
07:18PM Thursday, 07 May 2026
The developer of Firefox says it has "completely bought in" on AI-assisted bug discovery.
Read More ..Ars Asks: Share your shell and show us your tricked-out terminals!
01:32PM Wednesday, 06 May 2026
A celebration of the tweaks and customizations that make life easier at the CLI.
Read More ..Widely used Daemon Tools disk app backdoored in monthlong supply-chain attack
07:46PM Tuesday, 05 May 2026
Daemon Tools users: It's time to check your machines for stealthy infections, stat.
Read More ..