source: trunk/SRC/Documentation/idldoc/templates/all-dirs.tt @ 376

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

debug + new xxx

File size: 1.3 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       dirs : array of structures of the type { href:'', name:'' }
11       ndirs : string containing the number of files, including the word "file(s)"
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>Directories</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>Directories</h1>
31
32    <ul>
33      <li><a href="./all-files.html" target="dir_frame">All directories</a></li>
34      [% FOREACH dir IN dirs %]
35      <li><a href="[% dir.href %]" target="dir_frame">[% dir.name %]</a></li>[% END %]
36    </ul>
37
38    <div id="tagline">[% ndirs %]</div>
39    </div>
40  </body>
41</html>
Note: See TracBrowser for help on using the repository browser.