XF 2.0 thread.post_date in PAGE_CONTAINER Template

nanto

Member
Hello
This does not work in the PAGE_CONTAINER template.
HTML:
{{ date($thread.post_date) }}
Is there a way to do that?
 
This is a pity.
My intention is to get $ thread.post_date or $ thread.FirstPost.post_date in the head area of the html output.

HTML:
<head>
...
{{ date($thread.post_date) }} 
...
</head>
<body data-template="{$template}">

Is there another way to achieve that?
 
Use <xf:page name="someVar" /> tag in thread_view template, it's an analogue of <xen:container var="someVar" /> from XF1.
 
Top Bottom