How to display custom tags

I feel like everytime I post something I answer to muself lol, maybe not enough time, anyway, this is not on the forum like this anywhere so it’s worth adding, for another front-end noob like me :stuck_out_tongue:

This is how you can get your posts with a specific tag:

{{#get “posts” filter=“tags:nature”}}

{{#foreach posts}}

<h3>

<a href="{{url}}">{{title}}</a>

<span class=“main-time”>

<time class=“post-date” datetime="{{date format=‘YYYY-MM-DD’}}">{{date format=“DD MMM YYYY”}}</time>

</span>

</h3>

{{/foreach}}

{{/get}}

It has no formating, but the main idea works. Hope it helps :slight_smile:

pd: here is the same result with formating:

image