@page "/Feeds/GetUserFeed"
@using System.Globalization
@using Roblox.Models.Assets
@model Roblox.Website.Views.UserFeed
@{
Layout = null;
}
@{
// https://stackoverflow.com/questions/1037839/how-to-force-link-from-iframe-to-be-opened-in-the-parent-window
}
@if (item.type == CreatorType.User) { @item.user.name } else if (item.group != null) { @item.group.name }
"@item.content"
@if (item.type == CreatorType.Group) { (posted by @item.user.name) } @item.created.ToString("MMM d, yyyy h:mm tt", CultureInfo.InvariantCulture)