AutoTheme

Configuration

theme.cfg

This tells AutoTheme whether to strip all of the tags in between <head> and </head> from the Main Theme file.  If you set this to false, then you need to insure that you don't have any conflicting information here.  PostNuke uses many <meta> tags and some <script>:
$strip_head = true;

This tells AutoTheme whether to alternate the summary articles on the home page and use the summary1 and summary2.
$alternate_summary = true;

These are the file names that you want to use for your HTML templates for standard PostNuke elements:

Main theme template file names
$template = array (
        'main' => "theme.html",
        'summary' => "summary.html",
        'article' => "article.html",
        'leftblock' => "leftblock.html",
        'centerblock' => "centerblock.html",
        'rightblock' => "rightblock.html",

        Nuclei blocks template file names (*optional)
        'area1block' => "area1block.html",
        'area2block' => "area2block.html",
        'area3block' => "area3block.html",
        'area4block' => "area4block.html",
        'area5block' => "area5block.html",
        'area6block' => "area6block.html",
        'area7block' => "area7block.html",
        'area8block' => "area8block.html",
        'area9block' => "area9block.html",
        'topblock' => "topblock.html",
        'bottomblock' => "bottomblock.html"
);

Display blocks on all pages
$block_display = array (
        'left' => true,
        'center' => false,
        'right' => false,

        Nuclei blocks (*optional)
        'area1' => false,
        'area2' => false,
        'area3' => false,
        'area4' => false,
        'area5' => false,
        'area6' => false,
        'area7' => false,
        'area8' => false,
        'area9' => false,
        'top' => false,
        'bottom' => false
);

Style sheet, logo image and colors used by modules by default
$miscellaneous = array (
        'stylesheet' => "",
        'logo' => "default.gif", // [logo-image]
        'bgcolor1' => "#D4E1AE", // [color1]
        'bgcolor2' => "#99CC00", // [color2]
        'bgcolor3' => "#D4E1AE", // [color3]
        'bgcolor4' => "#FFFFFF", // [color4]
        'textcolor1' => "#000000", // [color5]
        'textcolor2' => "#660066" // [color6]
);

Custom themed blocks - configure custom templates (*optional)
These override the standard settings above only for the specific block
Comment out or delete what you don't need

$custom_block = array (
        'Main Menu' => "mainmenu.html",
        'Poll' => "poll.html",
        'Related links' => "relatedlinks.html"
);

Custom themed modules - configure custom templates, colors, image and block display (*optional)
These override the standard settings above only for the specific module
Comment out or delete what you don't need

$custom_module['News'] = array (
Module specific template file names
        'main' => "theme.html",
        'leftblock' => "leftblock.html",
        'centerblock' => "centerblock.html",
        'rightblock' => "rightblock.html",

        Module specific Nuclei blocks template file names (*optional)
        'area1block' => "area1block.html",
        'area2block' => "area2block.html",
        'area3block' => "area3block.html",
        'area4block' => "area4block.html",
        'area5block' => "area5block.html",
        'area6block' => "area6block.html",
        'area7block' => "area7block.html",
        'area8block' => "area8block.html",
        'area9block' => "area9block.html",
        'topblock' => "topblock.html",
        'bottomblock' => "bottomblock.html",

Block display for this module
        'left' => true,
        'center' => false,
        'right' => false,
       
        Nuclei blocks (*optional)
        'area1' => false,
        'area2' => false,
        'area3' => false,
        'area4' => false,
        'area5' => false,
        'area6' => false,
        'area7' => false,
        'area8' => false,
        'area9' => false,
        'top' => false,
        'bottom' => false,

Style sheet, logo image and colors for this module
        'stylesheet' => "",
        'logo' => "thenews.gif",
        'bgcolor1' => "#D4E1AE",
        'bgcolor2' => "#99CC00",
        'bgcolor3' => "#D4E1AE",
        'bgcolor4' => "#FFFFFF",
        'textcolor1' => "#000000",
        'textcolor2' => "#660066"
);

$custom_module['Downloads'] = array (
Logo image and block display
        'logo' => "downloads.gif",
        'right' => true
);

$custom_module['Web_Links'] = array (
Block display for this module
        'right' => true
);