[tw5] Dynamic tiller name Transclusion with Templates

Following suggestion from Eric (https://groups.google.com/g/tiddlywiki/c/T8lL1eeZatg/m/Ni7nUg3KCAAJ), I can stick a tiddler at the top of page.

The sticked tiddler is the daily journal with title format DDth MMM YYYY. Could I use the today as the tiddler title in the transclusion? In this case, I don’t need to update the stick tiddler every day

I have tired the script below, but it is not working.

{{[||$:/core/ui/ViewTemplate}}

{{[get]||$:/core/ui/ViewTemplate}}

Thanks for any suggestions.

You need to use the tiddler widget for that :

<$tiddler tiddler=<<now “DDth MMM YYYY”>> >
<$transclude tiddler="$:/core/ui/ViewTemplate"/>
</$tiddler>

1 Like

Thanks Télumire,

It is the perfect solution for me.