Foros de discusión

Correct Url to use with $theme.include

Jim Reynolds, modificado hace 12 años.

Correct Url to use with $theme.include

New Member Mensaje: 1 Fecha de incorporación: 15/03/11 Mensajes recientes
I am developing a custom theme and I am trying to use either the #include directive from velocity or the $theme.include method to include some code into the portal_normal.vm. I have placed the code I am trying to include in the _diffs/templates folder of the custom theme, but I cannot figure out what url to pass to the #include directive or to the $theme.include method.

Can someone enlighten me?

Here is the location of the code inside the custom theme source:

docroot/_diff/templates
portal_normal.vm
docbar-script.html

Here is the code I have tried:

#if ($is_signed_in)
#include("./dockbar-script.html")
#end

#if ($is_signed_in)
$theme.include("./dockbar-script.html")
#end
Niko H, modificado hace 12 años.

RE: Correct Url to use with $theme.include

New Member Mensajes: 16 Fecha de incorporación: 21/02/12 Mensajes recientes
I found the answer for this here: http://www.liferay.com/community/forums/-/message_boards/message/11582364

eg. #parse("$full_templates_path/velocity_file.vm")

Cheers

oops, you where including html.. but you have various velocity paths set in init.vm, hope that helps. At least in the _unstyled theme there is init.vm under templates.