
Blog Posts
Provide contextual feedback messages for typical user actions with the handful
of available and flexible alert messages.
Blog Post
Use @Html.LLG().BlogPosts(BlogPostViewName viewName)
method to list blog posts.
There are 6 different views BlogPostViewName.Grid
, BlogPostViewName.Card2D
... and as you see at below.
Tab title equal to view name.

Popular
this
month
Join our news
// For the 'Grid' view
@Html.LLG().BlogPosts(BlogPostViewName.Grid)
// For the 'Card2D' view
@Html.LLG().BlogPosts(BlogPostViewName.Card2D)
// For the 'Card' view
@Html.LLG().BlogPosts(BlogPostViewName.Card)
// For the 'ListBottomText' view
@Html.LLG().BlogPosts(BlogPostViewName.ListBottomText)
// For the 'ListRightText' view
@Html.LLG().BlogPosts(BlogPostViewName.ListRightText)
Pageable
Use .Pageable(string pageQueryName, int pageSize)
method to make pageable.

Virtual Tours as a marketing tool after Covid
// For the 'Grid' view
@Html.LLG().BlogPosts(BlogPostViewName.Grid).Pageable("grid-page", 2)
// For the 'Card' view
@Html.LLG().BlogPosts(BlogPostViewName.Card).Pageable("card-page", 2)
// For the 'ListBottomText' view
@Html.LLG().BlogPosts(BlogPostViewName.ListBottomText).Pageable("list-bottom-text-page", 2)
// For the 'ListRightText' view
@Html.LLG().BlogPosts(BlogPostViewName.ListRightText).Pageable("list-right-text-page", 2)
To Slider
Use .ToSlider(Action[SliderBuilder] action)
method to make slider.
Grid View

Virtual Tours as a marketing tool after Covid
@Html.LLG().BlogPosts(BlogPostViewName.Grid)
.ToSlider(slider => {
slider.SlidesToShow(2);
slider.Dots();
})
Card View
@Html.LLG().BlogPosts(BlogPostViewName.Card)
.ToSlider(slider => {
slider.SlidesToShow(2);
slider.Dots();
})
ListBottomText View
@Html.LLG().BlogPosts(BlogPostViewName.ListBottomText)
.ToSlider(slider => {
slider.SlidesToShow(2);
slider.Dots();
})
ListRightText View
@Html.LLG().BlogPosts(BlogPostViewName.ListRightText)
.ToSlider(slider => {
slider.SlidesToShow(2);
slider.Dots();
})
PostOnImage View
Virtual Tours as a marketing tool after Covid
Virtual Tours@Html.LLG().BlogPosts(BlogPostViewName.PostOnImage)
.ToSlider(slider => {
slider.SlidesToShow(2);
slider.Dots();
})
PostOnImage2 View
Virtual Tours as a marketing tool after Covid
@Html.LLG().BlogPosts(BlogPostViewName.PostOnImage2)
.ToSlider(slider => {
slider.SlidesToShow(2);
slider.Dots();
})