2 MoinMoin - Dead fox junction website theme.
4 @copyright: 2010+ Matthijs Kooijman
5 @license: GNU GPL, see COPYING for details.
8 from site import SiteTheme
10 class Theme(SiteTheme):
11 name = "deadfoxjunction"
13 # Add an extra #window div that will be visible content area, framed
14 # by a wooden "window". We can't just use #content here, since
15 # #messages is besides #content in editing mode.
16 def startPage(self, d):
17 html = SiteTheme.startPage(self, d)
18 html += u'<div id="window">\n'
22 html = SiteTheme.endPage(self, d)
23 html += u'</div><!-- #window -->\n'