]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/html/anchor
some basic html templates for use in wrappers. these will be augmented
[working/Evergreen.git] / Open-ILS / src / templates / html / anchor
1 [%# ARGS
2 -%]
3
4
5 [% "<a href='" _ href _ "'";
6
7         IF onsubmit; " onsubmit='" _ onsubmit _ "'"; END;
8         IF onmouseover; " onmouseover='" _ onmouseover _ "'"; END;
9         IF onmouseout; " onmouseout='" _ onmouseout _ "'"; END;
10         IF class; " class='" _ class _ "'"; END;
11
12         IF text OR content; 
13                 ">";
14                 text; 
15                 " ";
16                 content;
17                 "</a>\n";
18         ELSE;
19                 "/>\n";
20         END;
21
22 %]