Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of theme Vertigo. This theme is a port of the Vertigo GPL theme found on Wordpress
| 1 | <?php |
| 2 | |
| 3 | function vertigo_regions(){ |
| 4 | |
| 5 | $my_regions = array( |
| 6 | |
| 7 | 'footerleft' => t('Footer Left'), |
| 8 | 'footermiddle1' => t('Footer Middle 1'), |
| 9 | 'footermiddle2' => t('Footer Middle 2'), |
| 10 | 'footerright' => t('Footer Right') |
| 11 | ); |
| 12 | |
| 13 | $result = array_merge($my_regions, phptemplate_regions()); |
| 14 | return $result; |
| 15 | } |
| 16 | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |