source: trunk/Documentation/idldoc/templates/categories-begin.tt @ 69

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

debug + new xxx

File size: 2.1 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml-transitional.dtd">
4
5<!-- categories-begin.tt 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       navbar_filename : filename of navbar template
11     Plus fields needed by the templates: navbar, tagline
12-->
13
14<!-- categories-tag.tt needs structure with the following fields:
15       tag : tag name
16       tag_id : tag name with spaces converted to underscores
17       routines : array of structures with fields name, url
18-->
19
20<!-- categories-end.tt needs structure with the following fields:
21       footer : filename of footer file to include
22       tagline_filename : filename of tagline template
23-->
24
25
26<!-- Generated by IDLdoc [% version %] on [% date %] -->
27
28<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
29  <head>
30    <title>Categories ([% title %])</title>
31
32    [% IF embed %]
33    <style type="text/css" media="all">
34         [% INCLUDE css_location %]
35    </style>   
36    <style type="text/css" media="print">
37         [% INCLUDE print_css_location %]
38    </style>
39    [% ELSE %]
40    <link rel="stylesheet" type="text/css" href="[% root %]/main_files.css" media="all"/>
41    <link rel="stylesheet" type="text/css" href="[% root %]/main_files_print.css" media="print"/>
42    [% END %]
43
44    <script type="text/javascript" src="./tree.js" />
45    <script type="text/javascript">
46      function setTitle() {
47        parent.document.title="Categories ([% title %])";
48      }
49    </script>
50  </head>
51
52
53  <body onload="setTitle();">
54
55    [% INCLUDE_TEMPLATE navbar_filename %]
56
57    <div id="container">
58
59      <h1>Categories</h1>
60
61
62      [% IF ntags eq 0 %]
63      <p>No categories in library.</p>
64      [% ELSE %]
65      <p>The following categories were found in the library.</p>
66      <ul id="tree">
67      [% END %]
Note: See TracBrowser for help on using the repository browser.