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