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