@model List @{ ViewData["Title"] = "Blog"; }

Sky Art Shop Blog

Creative ideas, tutorials, and inspiration for your crafting journey

@foreach (var post in Model) {
@if (!string.IsNullOrEmpty(post.FeaturedImage)) {
@post.Title
}

@post.Title

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

@if (!string.IsNullOrEmpty(post.Excerpt)) {

@post.Excerpt

} Read More
}