Merge pull request #444 from aidan-casey/master

Added "buttons" option under the HTML object.
This commit is contained in:
Stéphane Goetz 2017-04-11 13:54:05 +02:00 gecommit door GitHub
bovenliggende dd1a52af65 1b1eeb7fb9
commit 37c3dfe830
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--secondary Button--hero">' . $name . '</a>';
}
?>
<div class="clearfix"></div>
</div>