I have a shortcode defined which takes an argument, I’ve called the argument “title”. It’s called like this:
{{< post/title title="Some title" >}}
All is well.
But sometimes I want to pass the Page.Title as an argument. And this is where I’m stuck. How do I do that? This doesn’t work:
{{< post/title title=.Title >}}
I’ve tried several variants like passing {{.Title}} or with double quotes but nothing seems to help. I have the feeling I’m close, can someone nudge me in the right direction?