The cards—like the podcast cards—show, for example, Nov 14, 2024, but the hbs file shows date format=“DD-MM-YYYY”, which is clearly not the same, suggesting that the date format is being overridden somewhere.
Any idea where one changes this?
The cards—like the podcast cards—show, for example, Nov 14, 2024, but the hbs file shows date format=“DD-MM-YYYY”, which is clearly not the same, suggesting that the date format is being overridden somewhere.
Any idea where one changes this?
The formatting you are referring to is for the datetime
attribute:
<time datetime="{{date format="YYYY-MM-DD"}}">{{date}}</time>
So if you want to format the visible text, add the formatting to that one too:
<time datetime="{{date format="YYYY-MM-DD"}}">{{date format="YYYY-MM-DD"}}</time>
Thank you. It worked.