| Commit | Line | Data |
|---|---|---|
| e0a8f494 J |
1 | ; $Id$ |
| 2 | ||
| e0a8f494 | 3 | |
| 206f00d1 J |
4 | ; The name and description of the theme used on the admin/build/themes page. |
| 5 | name = Zen Themer’s Starter Kit | |
| 6 | description = Read the <a href="http://drupal.org/node/226507">online docs</a> on how to create a sub-theme. | |
| 7 | ||
| 8 | ; The screenshot used on the admin/build/themes page. | |
| e0a8f494 J |
9 | screenshot = screenshot.png |
| 10 | ||
| 206f00d1 J |
11 | ; "core" specifies the version of Drupal that this theme is compatible with. |
| 12 | ; "base theme" specifies that this is a theme that uses the "zen" theme as its | |
| 13 | ; base theme. Its unlikely you will ever need to change these, but they are | |
| 14 | ; required fields for a Zen sub-theme. The "engine" field is not used in a | |
| 15 | ; sub-theme since the engine is inherited from its base theme. | |
| 16 | core = 6.x | |
| 17 | base theme = zen | |
| 18 | ||
| 19 | ; This section adds CSS files to your theme. The media type is specified in | |
| 20 | ; the brackets. Typical CSS media types include "all", "screen", "print", and | |
| 21 | ; "handheld". See http://www.w3.org/TR/CSS21/media.html#media-types for a full | |
| 22 | ; list of stylesheet media types in CSS 2.1. | |
| 23 | ; | |
| 6a13f77b | 24 | ; You can also override any of Zen's stylesheets or any module's stylesheets, |
| 206f00d1 J |
25 | ; an /extremely/ useful feature. See the excellent Drupal 6 Theme Guide at |
| 26 | ; http://drupal.org/node/171209 for more details. | |
| 27 | stylesheets[all][] = layout.css | |
| 28 | ;stylesheets[all][] = html-elements.css | |
| 29 | ;stylesheets[all][] = tabs.css | |
| 30 | stylesheets[all][] = STARTERKIT.css | |
| 9c9b5bbc | 31 | ;stylesheets[all][] = block-editing.css |
| 2041a7c1 | 32 | ;stylesheets[all][] = wireframes.css |
| 206f00d1 | 33 | stylesheets[print][] = print.css |
| 427824bd J |
34 | ; To prevent stylesheets of a base theme or of a module from being included in |
| 35 | ; our sub-theme, we specify it in our .info file (and we don't need to have a | |
| 36 | ; stylesheet in our sub-theme with that name.) For example, we prevent the | |
| 37 | ; zen.css file in the base theme from being included by specifying it here. | |
| 206f00d1 J |
38 | stylesheets[all][] = zen.css |
| 39 | ||
| 719059ea J |
40 | ; Set the conditional stylesheets that are processed by IE. |
| 41 | ;conditional-stylesheets[if IE][all][] = ie.css | |
| 42 | ||
| 6a13f77b | 43 | ; The regions defined in Zen's default page.tpl.php file. The name in |
| 206f00d1 J |
44 | ; brackets is the name of the variable in the page.tpl.php file, (e.g. |
| 45 | ; "[content_top]" in the .info file means there should be a $content_top | |
| 46 | ; variable in the page.tpl.php file.) The text after the equals sign is a | |
| 47 | ; descriptive text used on the admin/build/blocks page. | |
| 48 | ; | |
| 6a13f77b | 49 | ; To add a new region, copy Zen's page.tpl.php to your sub-theme's directory, |
| 206f00d1 J |
50 | ; add a line line to this file, and then add the new variable to your |
| 51 | ; page.tpl.php template. | |
| e0a8f494 J |
52 | regions[left] = left sidebar |
| 53 | regions[right] = right sidebar | |
| 54 | regions[navbar] = navigation bar | |
| 55 | regions[content_top] = content top | |
| 56 | regions[content_bottom] = content bottom | |
| 57 | regions[header] = header | |
| 58 | regions[footer] = footer | |
| 59 | regions[closure_region] = closure | |
| 60 | ||
| 206f00d1 J |
61 | ; Various page elements output by the theme can be toggled on and off. The |
| 62 | ; "features" control which of these check boxes display on the | |
| 63 | ; admin/build/themes config page. This is useful for suppressing check boxes | |
| 64 | ; for elements not used by your sub-theme. To suppress a check box, omit the | |
| 65 | ; entry for it below. See the Drupal 6 Theme Guide for more info: | |
| 66 | ; http://drupal.org/node/171205#features | |
| 67 | features[] = logo | |
| 68 | features[] = name | |
| 69 | features[] = slogan | |
| 70 | features[] = mission | |
| 71 | features[] = node_user_picture | |
| 72 | features[] = comment_user_picture | |
| 73 | features[] = search | |
| 74 | features[] = favicon | |
| 75 | features[] = primary_links | |
| 76 | features[] = secondary_links | |
| 7b846edf J |
77 | |
| 78 | ; Set the default settings to be used in theme-settings.php | |
| 79 | settings[zen_block_editing] = 1 | |
| 80 | settings[zen_breadcrumb] = yes | |
| 81 | settings[zen_breadcrumb_separator] = ' › ' | |
| 82 | settings[zen_breadcrumb_home] = 1 | |
| 83 | settings[zen_breadcrumb_trailing] = 1 | |
| 84 | settings[zen_breadcrumb_title] = 0 | |
| 85 | settings[zen_wireframes] = 0 |