Added "buttons" option under the HTML object. This allows users to create custom button links on the landing page.

This commit is contained in:
Aidan Casey 2017-03-29 16:46:29 -04:00
bovenliggende 2b1bfbf52a
commit a3157e6b0a
2 gewijzigde bestanden met toevoegingen van 5 en 0 verwijderingen

Bestand weergeven

@ -38,6 +38,8 @@
"twitter": [],
"links": {
},
"buttons": {
},
"google_analytics": false,
"piwik_analytics": false,

Bestand weergeven

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