<@td.themeFileUrl>

Example Usage:

Assuming the presence of /static/logo.png in the Portal Theme:

<@td.themeFileUrl value="logo.png" />

The above would add a url pointing to logo.png to the page. As with other tags, this url could be used directly as an attribute value or stored in a variable:

<img src=<@td.themeFileUrl value="logo.png" /> />
<@td.themeFileUrl var="logoUrl" value="logo.png" />
.
.
.
<img src=${logoUrl} />

The file pointed to by the @value attribute must be a file relative to the static/ directory.