switch ($iterator) {
case 1:
if (isset($paragraph['title']) && $paragraph['title']) {
- $page['pageContent'] .= '<h1>'.$paragraph['title'].'</h1>';
+ $page['pageContent'] .= '<h2>'.$paragraph['title'].'</h2>';
}
if (isset($paragraph['image']) && $paragraph['image']) {
//$page['images'][] = $paragraph['image'];
break;
case 2:
if (isset($paragraph['name']) && $paragraph['name']) {
- $page['pageContent'] .= '<h2>'.$paragraph['name'].'</h2>';
+ $page['pageContent'] .= '<h3>'.$paragraph['name'].'</h3>';
}
if (isset($paragraph['title']) && $paragraph['title']) {
- $page['pageContent'] .= '<h2>'.$paragraph['title'].'</h2>';
+ $page['pageContent'] .= '<h3>'.$paragraph['title'].'</h3>';
}
if (isset($paragraph['image']) && $paragraph['image']) {
//$page['images'][] = $paragraph['image'];
break;
default:
if (isset($paragraph['name']) && $paragraph['name']) {
- $page['pageContent'] .= '<h2>'.$paragraph['name'].'</h2>';
+ $page['pageContent'] .= '<h3>'.$paragraph['name'].'</h3>';
}
if (isset($paragraph['title']) && $paragraph['title']) {
- $page['pageContent'] .= '<h2>'.$paragraph['title'].'</h2>';
+ $page['pageContent'] .= '<h3>'.$paragraph['title'].'</h3>';
}
if (isset($paragraph['template']) && $alternateImg && $page['template'] == 2) {
$align = ($iterator%2 == 0) ? 'left' : 'right';