db2html: more work toward making content to show up
[gtk-doc.git] / tools / templates / refentry.html
blob1e4bb74c9ef3eaf674e3a27ce075605b14a59f92
1 {% from 'common.html' import doctype, head_links, navigation_ref %}
2 {{ doctype() }}
3 <html>
4 <head>
5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6 <title>{{ title }}: {{ nav_home.title }}</title>
7 {{ head_links(nav_home, nav_up, nav_prev, nav_next) }}
8 <link rel="stylesheet" href="style.css" type="text/css">
9 </head>
10 <body>
11 {{ navigation_ref(nav_home, nav_up, nav_prev, nav_next) }}
12 <div class="refentry">
13 <a name="{{ id }}"></a>
14 <div class="refnamediv">
15 <table width="100%"><tr>
16 <td valign="top">
17 <h2><span class="refentrytitle"><a name="{{ id }}.top_of_page"></a>{{ title }}</span></h2>
18 <p>{{ title }} — module for gtk-doc unit test</p>
19 </td>
20 <td class="gallery_image" valign="top" align="right"></td>
21 </tr></table>
22 </div>
24 {%- for sect in xml.findall('refsect1') %}
25 <div class="refsect1">
26 <a name="{{ sect.attrib['id'] }}"></a><h2>{{ sect.findtext('title') }}</h2>
27 </div>
28 {%- endfor %}
30 </div>
31 </body>
32 </html>