]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/html/space
some basic html templates for use in wrappers. these will be augmented
[working/Evergreen.git] / Open-ILS / src / templates / html / space
1 [%
2
3         # --------------------------------------------------------      
4         # Inserts whitespace into a page.
5         # 'size' is the number of lines to output
6         # --------------------------------------------------------
7
8         IF size;
9                 x=0;
10                 WHILE x < size;
11                         "&nbsp;";
12                         x = x + 1;
13                 END;
14         END;
15 %]
16
17