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
parent 2b1bfbf52a
commit a3157e6b0a
2 changed files with 5 additions and 0 deletions

View File

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

View File

@ -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>