]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/html/img
some basic html templates for use in wrappers. these will be augmented
[working/Evergreen.git] / Open-ILS / src / templates / html / img
1 [%
2         "<img";
3         IF src;         " src='"                _ src           _ "'"; END;
4         IF height;      " height='" _ height _ "'"; END;
5         IF width;       " width='"      _ width _ "'"; END;
6         IF valign;      " valign='"     _ valign        _ "'"; END;
7         IF border OR border == 0;       " border='"     _ border        _ "'"; END;
8
9         "/>";
10 %]
11