source: trunk/Documentation/idldoc/templates/idla-overview.tt @ 69

Last change on this file since 69 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 : IDLdoc version
7       date : string containing date of file creation
8       embed : 0 for link to CSS, 1 for embed CSS
9       css_location : if embed then string filename of CSS file location, o/w href to CSS file
10       overview_comments : general comments in the overview file, if any
11       ndirs : number of directories
12       dirs : array of structures with fields { name:'', url:'', parity:'', comment:'' }
13       navbar_filename : filename of navbar template
14       footer : filename of footer file to include
15       tagline_filename : filename of tagline template
16     Plus fields needed by the templates: navbar, tagline
17-->
18
19<!-- Generated by IDLdoc [% version %] on [% date %] -->
20
21<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
22  <head>
23    <title>Overview</title>
24  </head>
25
26  <body text="#000000" bgcolor="#FFFFFF">
27
28    [% INCLUDE_TEMPLATE navbar_filename %]
29
30    <h1>Overview</h1>
31     
32    [% overview_comments %]
33   
34    [% IF ndirs gt 0 %]
35    <h2>Directories</h2>
36    <table>
37      [% FOREACH dir IN dirs %]
38      <tr>
39        <td><a href="[% dir.url %]" target="dir_frame">[% dir.name %]</a></td>
40        <td>[% dir.comment %]</td>
41      </tr>     
42      [% END %]
43    </table>     
44    [% END %]
45   
46    <br/>
47    [% IF footer NE '' %]<center><font size="-2">[% INCLUDE footer %]</font></center>[% END %]
48   
49    [% INCLUDE_TEMPLATE tagline_filename %]         
50  </body>
51</html>
Note: See TracBrowser for help on using the repository browser.