root/pydotorgtheme/0.10/pydotorgtheme/theme.py
| Revision 1690, 415 bytes (checked in by coderanger, 2 years ago) |
|---|
| Line | |
|---|---|
| 1 | from trac.core import * |
| 2 | |
| 3 | from themeengine.api import ThemeBase |
| 4 | |
| 5 | __all__ = ['PyDotOrgTheme'] |
| 6 | |
| 7 | class PyDotOrgTheme(ThemeBase): |
| 8 | """A theme based on http://www.python.org.""" |
| 9 | |
| 10 | css = screenshot = True |
| 11 | |
| 12 | header_logo = { |
| 13 | 'src': 'http://www.python.org/images/python-logo.gif', |
| 14 | 'alt': 'homepage', |
| 15 | 'height': '71', |
| 16 | 'link': 'http://www.python.org/', |
| 17 | 'width': '211', |
| 18 | } |
Note: See TracBrowser for help on using the browser.
