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

Cette révision appartient à :
Aidan Casey 2017-03-29 16:46:29 -04:00
Parent 2b1bfbf52a
révision a3157e6b0a
2 fichiers modifiés avec 5 ajouts et 0 suppressions

Voir le fichier

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

Voir le fichier

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