Merge pull request #459 from eisbehr-/master

add global checks in templates to prevent errors
This commit is contained in:
Stéphane Goetz 2017-05-18 22:23:59 +02:00 committed by GitHub
commit f55a72bce8

View File

@ -27,9 +27,11 @@
foreach ($page['entry_page'] as $key => $node) { foreach ($page['entry_page'] as $key => $node) {
echo '<a href="' . $node . '" class="Button Button--primary Button--hero">' . $key . '</a>'; echo '<a href="' . $node . '" class="Button Button--primary Button--hero">' . $key . '</a>';
} }
if(isset($params['html']['buttons']) && is_array($params['html']['buttons'])) {
foreach ($params['html']['buttons'] as $name => $link ) { foreach ($params['html']['buttons'] as $name => $link ) {
echo '<a href="' . $link . '" class="Button Button--secondary Button--hero">' . $name . '</a>'; echo '<a href="' . $link . '" class="Button Button--secondary Button--hero">' . $name . '</a>';
} }
}
?> ?>
<div class="clearfix"></div> <div class="clearfix"></div>
</div> </div>