10 ################################################# |
10 ################################################# |
11 ## Common templates for index and docu files ## |
11 ## Common templates for index and docu files ## |
12 ################################################# |
12 ################################################# |
13 |
13 |
14 headerTemplate = \ |
14 headerTemplate = \ |
15 '''<?xml version="1.0" encoding="utf-8"?> |
15 '''<!DOCTYPE html> |
16 <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' |
|
17 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> |
|
18 <html><head> |
16 <html><head> |
19 <title>{{Title}}</title> |
17 <title>{{Title}}</title> |
|
18 <meta charset="UTF-8"> |
20 </head> |
19 </head> |
21 <body style="background-color:{BodyBgColor};color:{BodyColor}">''' |
20 <body style="background-color:{BodyBgColor};color:{BodyColor}">''' |
22 |
21 |
23 footerTemplate = ''' |
22 footerTemplate = ''' |
24 </body></html>''' |
23 </body></html>''' |