source: trunk/SRC/Documentation/idldoc/templates/all-files.tt @ 191

Last change on this file since 191 was 69, checked in by smasson, 18 years ago

debug + new xxx

File size: 1.6 KB
Line 
1
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
5<!-- Template needs structure with the following fields:
6       version : string containing the IDLdoc version
7       date : string containing date of file creation
8       embed : 0 for link to CSS, 1 for embed CSS
9       css_location : string filename of CSS file location
10       files : array of structures of the type { href:'', name:'' }
11       nfiles : number of files
12-->
13
14<!-- Generated by IDLdoc [% version %] on [% date %] -->
15
16<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
17  <head>
18    <title>All Files</title>
19    [% IF embed %]
20    <style type="text/css">
21      [% INCLUDE css_location %]
22    </style>
23    [% ELSE %]
24    <link rel="stylesheet" type="text/css" href="listings.css" />
25    [% END %]
26  </head>
27
28  <body>
29    <div id="container">
30    <h1>All Files</h1>
31
32      [% IF nfiles gt 0 %]
33      <ul>
34        [% FOREACH file IN files %]
35        <li><a href="[% file.href %]" target="file_frame">[% file.name %]</a></li>[% END %]
36      </ul>
37     
38      <div id="tagline">[% strtrim(nfiles, 2) %] file[% nfiles gt 1 ? "s" : "" %]</div>
39      [% END %]
40     
41      [% IF nsavfiles gt 0 %]
42      <h1>SAV files</h1>
43      <ul>
44        [% FOREACH file IN savfiles %]
45        <li><a href="[% file.href %]" target="file_frame">[% file.name %]</a></li>[% END %]
46      </ul>
47     
48      <div id="tagline">[% strtrim(nsavfiles, 2) %] file[% nsavfiles gt 1 ? "s" : "" %]</div>
49      [% END %]
50     
51    </div>
52  </body>
53</html>
Note: See TracBrowser for help on using the repository browser.