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)
Fed up with vibe coders, dev sneaks data-nuking prompt injection into their code
08:29PM Thursday, 28 May 2026
Undisclosed addition in jqwik instructed AI coding agents to delete app output.
Read More ..Websites have a new way to spy on visitors: Analyzing their SSD activity
08:56PM Wednesday, 27 May 2026
Telltale SSD activity can be measured in the browser using simple JavaScript.
Read More ..Millions of AI agents imperiled by critical vulnerability in open source package
07:50PM Tuesday, 26 May 2026
"BadHost" was found in Starlette, a package with 325 million weekly downloads.
Read More ..US's big bet on quantum computing may not be entirely legal
12:00PM Monday, 25 May 2026
Deal also launched the first quantum foundry company, but is there a need for it?
Read More ..