Is there a Recent Blog Posts page like there is for forums? If so, where. If not, how to create one?
I created a component that displays recent blog posts by a given author to include in their profile. However, it only shows the LIMIT I set or all. I want to be able to go to an archive page / recent blog posts page i.e., VIEW ALL when there are more than, say 10 or 20 posts.
Can I create an archive page similar to the forums recent post page, i.e., /t5/forums/recentpostspage/post-type/message/user-id/62383
I'd think the link would be something like /t5/Blogs/recentpostspage/post-type/message/user-id/62383
I do notice there is a BlogArchivesPage w/ quilt, but no idea where to find it on the site. Am I missing something obvious?
On Lithium, I'm not a blogger, but on our site there are about 30 bloggers, and I'd like to be able to have this. Thoughts?
SuzieH got any magic bullets?
PS: I did get the information that there's this, /t5/blogs/blogarchivespage/blog-id/[your blog name here]/ but I'm looking more for a paginated tabular listing of an individual blogger's posts. Does that exist? If not, what's the best way to go about it?
Hi Inactive User,
You'll have to build a paging component. It would be great if we had some kind of default pager component that would take in specific parameters in order to be used with custom lists. If you want to post an idea...
Check out the webuisupport FreeMarker context object.
I know you're not on the latest version of the Responsive skin, but here are the current variables we have for pagination classes for styling. You'll have to check the _variables.scss file to see if your version of the skin supports these.
//== Pagination
//
//##
//$pagination-color: $text-color;
//$pagination-bg: transparent;
//$pagination-border: transparent;
//$pagination-hover-color: $text-color;
//$pagination-hover-bg: transparent;
//$pagination-hover-border: transparent;
//$pagination-active-color: $text-color;
//$pagination-active-bg: transparent;
//$pagination-active-border: transparent;
//$pagination-disabled-color: $text-color;
//$pagination-disabled-bg: transparent;
//$pagination-disabled-border: transparent;And you might be able to make use of our Font Awesome variables for the pagination control icons: https://codepen.io/gxmikey/full/bZxrZY/