source: trunk/SRC/Documentation/idldoc/templates/dir-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.2 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
6<!-- Generated by IDLdoc [% version %] on [% date %] -->
7
8<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
9  <head>
10    <title>[% dirname %]</title>
11    [% IF embed %]
12    <style type="text/css">
13      [% INCLUDE css_location %]
14    </style>
15    [% ELSE %]
16    <link rel="stylesheet" type="text/css" href="[% root %]listings.css" />
17    [% END %]
18  </head>
19
20  <body>
21    <div id="container">
22      <h1><a href="[% dirurl %]" target="file_frame">[% dirname %]</a></h1>
23
24      [% IF nfiles gt 0 %]
25      <ul>
26        [% FOREACH file IN files %]
27        <li><a href="[% file.url %]" target="file_frame">[% file.name %]</a></li>[% END %]
28      </ul>
29     
30      <div id="tagline">[% strtrim(nfiles, 2) %] file[% nfiles gt 1 ? "s" : "" %]</div>
31      [% END %]
32
33      [% IF nsavfiles gt 0 %]
34      <h1>SAV files</h1>
35     
36      <ul>
37        [% FOREACH s IN savfiles %]
38        <li><a href="[% s.url %]" target="file_frame">[% s.name %]</a></li>[% END %]
39      </ul>
40
41      <div id="tagline">[% strtrim(nsavfiles, 2) %] file[% nsavfiles gt 1 ? "s" : "" %]</div>
42     
43      [% END %]
44    </div>
45  </body>
46</html>
Note: See TracBrowser for help on using the repository browser.