Chinese Learning Blog

Professional Chinese learning resources and practical tips

@if (Model.Any()) { var featuredPost = Model.First();
@featuredPost.Title
Featured Article @featuredPost.Category

@featuredPost.Title

@featuredPost.Summary

@featuredPost.ReadTime min read
@featuredPost.PublishedDate.ToString("MMMM dd, yyyy")
@foreach (var tag in featuredPost.Tags) { #@tag }
Read Full Article
}
@foreach (var post in Model.Skip(1)) {
@post.Title
@post.Category
@post.ReadTime min

@post.Title

@post.Summary

@foreach (var tag in post.Tags.Take(3)) { #@tag } @if (post.Tags.Count > 3) { +@(post.Tags.Count - 3) }
@post.PublishedDate.ToString("MMM dd")
Read More
}
@if (Model.Count > 6) {
}

Subscribe to Our Learning Newsletter

Get the latest Chinese learning articles and study tips

We respect your privacy and won't send spam

@functions { string GetCategoryColor(string category) { return category switch { "Learning Methods" => "blue", "Chinese Culture" => "red", "Exam Guidance" => "green", "Calligraphy Art" => "purple", "Business Chinese" => "yellow", _ => "gray" }; } }