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)

US-sanctioned currency exchange says $15 million heist done by "unfriendly states"
09:28PM Friday, 17 Apr 2026

Grinex says needed hacking resources "available exclusively to ... unfriendly states."

Read More ..
Recent advances push Big Tech closer to the Q-Day danger zone
11:00AM Friday, 17 Apr 2026

Here's which players are winning the race to transition to post-quantum crypto.

Read More ..
“Negative” views of Broadcom driving thousands of VMware migrations, rival says
07:44PM Thursday, 09 Apr 2026

Western Union exec says there were "challenges" working with Broadcom.

Read More ..
Iran-linked hackers disrupt operations at US critical infrastructure sites
08:49PM Wednesday, 08 Apr 2026

As the US and Israel's war has ramped up, so too have hacks on US industrial sites.

Read More ..