npsThemeImage

This element generates an img tag whose URI points to an icon or another image from the current theme directory (themes subdirectory). The src attribute containes the file name of the image (without path). All other attributes are taken over into the img tag unmodified. An example:

<npsThemeImage src="template.png" />
<npsThemeImage src="template.png" alt="ALT" title="Title" bit="1" />

This generates the following HTML code:

<img src="/NPS/themes/default/template.png" />
<img src="/NPS/themes/default/template.png" alt="ALT" title="Title" bit="1" />