@model SkyArtShop.Models.BlogPost @{ ViewData["Title"] = Model.Title; }

@Model.Title

@Model.CreatedAt.ToString("MMMM dd, yyyy")

← Back to Blog
@if (!string.IsNullOrEmpty(Model.FeaturedImage)) { }
@Html.Raw(Model.Content)
@if (Model.Tags != null && Model.Tags.Any()) {
Tags: @foreach (var tag in Model.Tags) { @tag }
}