source: trunk/Documentation/idldoc/templates/full-index.tt @ 69

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

debug + new xxx

File size: 1.5 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<!-- Generated by IDLdoc [% version %] on [% date %] -->
6
7<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
8  <head>
9    <title>Index ([% title %])</title>
10
11    [% IF embed %]
12    <style type="text/css" media="all">
13         [% INCLUDE css_location %]
14    </style>   
15    <style type="text/css" media="print">
16         [% INCLUDE print_css_location %]
17    </style>
18    [% ELSE %]
19    <link rel="stylesheet" type="text/css" href="[% css_location %]" media="all"/>
20    <link rel="stylesheet" type="text/css" href="[% print_css_location %]" media="print"/>
21    [% END %]
22
23    <script type="text/javascript">
24      function setTitle() {
25        parent.document.title="Index ([% title %])";
26      }
27    </script>
28  </head>
29
30  <body onload="setTitle();">
31
32    [% INCLUDE_TEMPLATE navbar_filename %]
33
34    <div id="container">
35
36      <h1>Index</h1>
37
38      [% IF empty %]<h2>No entries in index.</h2>[% ELSE %]
39
40      [% FOREACH l IN letters %]
41      <a href="[% l.url %]">[% l.letter %]</a>
42      [% END %]
43
44
45      <h5 id="_[% letter %]" class="index_letter">[% letter %]</h5>
46      <dl>
47        [% FOREACH item IN items %]
48        <dt><a href="[% item.url %]">[% item.name %]</a></dt>
49        <dd>[% item.description %]</dd>
50        [% END %]
51      </dl>
52
53      [% END %]
54
55      [% IF footer NE '' %]<div id="footer">[% INCLUDE footer %]</div>[% END %]
56
57      [% INCLUDE_TEMPLATE tagline_filename %]
58
59    </div>
60   
61  </body>
62</html>
Note: See TracBrowser for help on using the repository browser.