You are here

function panopoly_core_preprocess_html in Panopoly Core 7

Implementation of hook_preprocess_html()

We are telling the site that everything is a region-content. This is important since when we disable the block module it loses this classes which some things assume for generalized CSS considerations (i.e. Bartik's spacing of ul/ol).

File

./panopoly_core.module, line 80

Code

function panopoly_core_preprocess_html(&$variables) {
  $variables['classes_array'][] = 'region-content';
}