/[drupal]/contributions/themes/nokoala/template.php
ViewVC logotype

Contents of /contributions/themes/nokoala/template.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Tue Oct 24 22:52:12 2006 UTC (3 years, 1 month ago) by rkendall
Branch: MAIN
CVS Tags: DRUPAL-4-7--1-0, HEAD
Branch point for: DRUPAL-4-7
File MIME type: text/x-php
No Koala! Drupal theme by Ross Kendall - http://rosskendall.com.

The No Koala! theme is a simple but elegant single-column theme for
the Drupal content management system.  It's goal is to focus on
accessibility and usability, and should be suitable for a blog or
other simple websites.

The theme uses XHTML and CSS, and incorporates a CSS dropdown menu
that is designed to be integrated with the Drupal menu system.
1 <?php
2 // $Id$
3
4 /**
5 * @file
6 * Drupal template file for No Koala! theme by Ross Kendall.
7 *
8 * This file contains theme hooks that are designed to override default
9 * theme functions. It is used with the phptemplate theme engine.
10 */
11
12 /*
13 Copyright (C) 2006 Ross Kendall - http://rosskendall.com
14
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License
17 as published by the Free Software Foundation; either version 2
18 of the License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
28 http://www.gnu.org/copyleft/gpl.html
29 */
30
31 /**
32 * Defines custom block regions for No Koala theme.
33 *
34 * @return
35 * Returns an assosiative array containing names and descriptions for
36 * defined block regions.
37 */
38 function nokoala_regions() {
39 return array(
40 'content' => t('content'),
41 'top_menu' => t('top menu'),
42 'sidebar_left' => t('sidebar left (for admin)'),
43 'footer_message' => t('footer message')
44 );
45 }
46
47 ?>

  ViewVC Help
Powered by ViewVC 1.1.2