Mohammad, have you seen the startpage provided by the Firefox browser populated with Pocket articles?
It appears to be a grid of image-cards. Clicking on one takes you to the article.
It's hard not to click on a few. Very enticing. I'd like to try displaying my blog posts the same way but instead of each post opening up in a separate tiddler I'd like it to open as if the image card was a slider I'd clicked on, or a tab.
I found your flex-grid gallery and image-card tools:
and
I succeeded in putting together an image-card that would link to a tiddler:
<$link to="POST-TIDDLER" tooltip="POST-TIDDLER"><<image-card "foo.jpg" footer:"DATE-OF-POST" title:"POST-TIDDLER" text:"about three lines of text here">></$link>
I tried to add a list filter to that but did not succeed at all:
<$list filter="[tag[Blog]sort[chronological-date]]">
<$link to="{{!!title}}" tooltip="{{!!title}}"><<image-card {{!!field-1}} footer:{{!!created-date}} title:{{!!title}} text:{{!!field-3}}>></$link>
</$list>
May I ask you how to get a list of image-cards to display as a flex-grid gallery?
But when I click on them, they open as sliders or tabs instead of in other tiddlers?