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)

Microsoft discovers new lightweight backdoor that steals cryptocurrency
11:28PM Thursday, 18 Jun 2026

Crypto Clipper spreads over USB and communicates over Tor.

Read More ..
Apple patches high-severity eavesdropping vulnerability in Beats Studio Buds
07:41PM Thursday, 18 Jun 2026

The vulnerability, disclosed 12 months ago, affects multiple manufacturers.

Read More ..
Before SpaceX IPO, investors in China secretly acquired stakes
05:42PM Thursday, 18 Jun 2026

One previously unreported SpaceX investor has ties to Chinese military contractors.

Read More ..
Massive breach spills credentials for thousands of sensitive networks
07:54PM Wednesday, 17 Jun 2026

The affected include Oracle, Lenovo, FedEx, a NATO contractor, and Fortinet.

Read More ..