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)
Why are top university websites serving porn? It comes down to shoddy housekeeping.
07:00PM Friday, 24 Apr 2026
Hundreds of subdomains from dozens of universities have been hijacked by scammers.
Read More ..In a first, a ransomware family is confirmed to be quantum-safe
08:41PM Thursday, 23 Apr 2026
Technically speaking, there's no practical benefit to use PQC. So why is it being used?
Read More ..Microsoft issues emergency update for macOS and Linux ASP.NET threat
07:32PM Wednesday, 22 Apr 2026
When authentication fails, things can go very, very wrong.
Read More ..Contrary to popular superstition, AES 128 is just fine in a post-quantum world
12:35PM Tuesday, 21 Apr 2026
A stubborn misconception is hampering the already hard work of quantum readiness.
Read More ..