I wanted to add some custom html into the
So in my template that I am loading through my controller, I have something like this:
With $customHead being passed as a param. This seems to work fine but for my OCD brain, I wanted to ask if this is the correct way to use $head because I couldn't find any examples of its use anywhere.
thx
<head></head>
and then I saw this in PAGE_CONTAINER:
Code:
<xf:foreach loop="$head" value="$headTag">
{$headTag}
</xf:foreach>
So in my template that I am loading through my controller, I have something like this:
Code:
<xf:page option="head.abc" value="{$customHead}" />
With $customHead being passed as a param. This seems to work fine but for my OCD brain, I wanted to ask if this is the correct way to use $head because I couldn't find any examples of its use anywhere.
thx