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)

Claude, Codex, and Hermes installed unowned code inside corporate networks
02:00PM Thursday, 27 Aug 2026

227 install commands were found in corporate docs pointing at code nobody owns.

Read More ..
How OpenAI let a mob of LLM agents game a test and ransack Hugging Face
12:58PM Thursday, 27 Aug 2026

Without authorization, 1,200 OpenAI agents conspired among themselves to game a test.

Read More ..
AI agents meant to replace Meta workers made “large-scale, disruptive actions”
09:25PM Wednesday, 26 Aug 2026

Report shows Meta's challenges replacing people with AI agents.

Read More ..
Inaudible sounds used to fingerprint browsers catch AliExpress red-handed
07:19PM Monday, 24 Aug 2026

Is the technique outdated? Yes. Is it still creepy? Also yes.

Read More ..