Blog Cards layout with summary text, and xwiki.org front page sleek blog macro?

Hello,

first blog extension macro related question
Normally the the Blog Cards Layout of the “blog post list” Macro only shows the image but no text, unless you define that some blog posts are pinned. These pinned posts then also show the summary text.
Example from the documentation:
cardsPostLayout.png (1016×776) (xwiki.org)
Only the upper ones (the pinned posts) show their summary text. The “normal” ones below, don’t show their summary. Is it configurable to always show the summary text on the “normal” non pinned ones?
We quite like the modern look of the Blog Cards Layout, but we don’t want to manually stick blog posts, we always want the macro to only show the last X posts, but at the same time, we want it to always show the summary text of these next to the picture.

second blog extension macro related question
How is the sleek / simple “Latest Blog Posts” list on the xwiki.org starting page achived?
XWiki - The Advanced Open Source Enterprise and Application Wiki (XWiki.org)
I also really really like the look of that, as its sleek / minimalistic and modern looking, but all macros that I tried either only show a specific defined blog post (and no automatism like only show last X posts) and with the “Blog Post List” Macro I can’t figure out how to configure such an simple (but good looking) list that shows the title and the summary of the last 3 blog posts. At least not with the documented predefined layouts - Is this an custom layout or something completely else?

third question
How is the switchable “banner” (I can’t remember a better fittng word right now) of the xwiki.org start page achieved? Is this an public extension / macro?
I mean this thing with its selectable content:

I quite like the look of the XWIKI.org front page and “I don’t want to re-invent the wheel” so I really appreciate any help!

hey @TomTheWise !

  1. for showing a summary on everything I think you can add the useSummary=true handler: i.e
{{blogpostlist blog="Blog.WebHome" limit="6" layout="cards" layoutParams="displayTitle=true|useSummary=true"/}}
  1. It looks like the Notifications Macro (XWiki.org) to me

3.Apperantly its called a carousel slider … but I’m not sure about the specifics! Carousel Slider (XWiki.org)

… thats what I’d say atleast, could be wrong… good luck!

Have you discovered how a blog post is marked as pinned?

Thank you very much for your help

  1. useSummary=true does not seem to work for the Cards layout, already tried that before
  2. The Notifications Macro neither shows the full or summary text of a Blog entry, so I don’t think that its using the Notifications Macro. I guess its more something like the blog post list macro with an custom layout.
  3. Thanks that gives me a proper name to search further!

@Ricardo_Rodriguez yes is on the top right when using the cards layout and setting layoutParams="forceDisplayPinnedPosts=true for that macro.

Thanks for the hint @TomTheWise! I was looking for a property or an object in every blog’s entry, but I was wrong: pinned entries are listed as a property of the Blog.PinnedPostsClass instantiated in the Blog page:

Thus, the answer to your first question above can be redirected towards finding the way to automagically add every new blog’s post to the list of pinned entries.