@page @using Humanizer @using OliverBooth.Data @using OliverBooth.Services @model Index @inject IMastodonService MastodonService @{ ViewData["Title"] = "Blog"; IMastodonStatus latestStatus = MastodonService.GetLatestStatus(); }
@Html.Raw(latestStatus.Content)
@await Html.PartialAsync("_LoadingSpinner")