tidy up template
[gnome.introspection-doc-generator] / docs / index.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3  <head>
4         <meta http-equiv="content-type" content="text/html; charset=utf-8" />
5   <title>Seed Documentation</title>
6   <link rel="stylesheet" type="text/css" href="default.css" />
7   <link rel="stylesheet" type="text/css" href="library_gnome.css"></link>
8   <link media="print" rel="stylesheet" type="text/css" href="library_gnome_print.css"></link>
9  </head>
10  
11  <body>
12      
13     <div id="page">
14
15         <div id="header">
16             <div id="header-wrap">
17                 <h1>Un-official Seed Documentation</h1>
18             </div>
19         </div>
20         <div class="body-wrap">
21                 
22             <div class="ns-list">
23                 <h2>GObject Libraries</h2>
24                 <for each="thisClass" in="data">
25                     {!
26                     if (!thisClass.objects) { continue; }
27                     !}
28                     <div>
29                         <h2 class="classTitle">{+ (new Link().toSymbol(thisClass.name)) +}</h2>
30                     </div>
31                 </for>
32             </div>
33             
34             <div class="ns-list">
35      
36                 <h2>Non - GObject Libraries</h2>
37                 <for each="thisClass" in="data">
38                     {!
39                     if (thisClass.objects) { continue; }
40                     !}
41                     <div>
42                         <h2 class="classTitle">{+ (new Link().toSymbol(thisClass.name)) +}</h2>
43                     </div>
44                 </for>
45             </div> 
46      
47         </div>
48     </div>
49 </body>
50 </html>
51
52