Enable specifying button links

This commit is contained in:
lucperkins
2018-08-13 10:13:55 -07:00
parent a13ed8c0be
commit 00d136818b
2 changed files with 4 additions and 1 deletions

View File

@@ -85,14 +85,17 @@ params:
- title: App builder - title: App builder
icon: mouse-globe icon: mouse-globe
text: This is some explanatory text that is on two rows text: This is some explanatory text that is on two rows
url: /
buttonText: Free trial buttonText: Free trial
- title: Cloud integration - title: Cloud integration
icon: laptop-cloud icon: laptop-cloud
text: This is some explanatory text that is on two rows text: This is some explanatory text that is on two rows
url: /
buttonText: Get started buttonText: Get started
- title: Add-ons & plugins - title: Add-ons & plugins
icon: plug-cloud icon: plug-cloud
text: This is some explanatory text that is on two rows text: This is some explanatory text that is on two rows
url: /
buttonText: Get started buttonText: Get started
section2: section2:
title: You're here because you want the best title: You're here because you want the best

View File

@@ -25,7 +25,7 @@
<p>{{ .text }}</p> <p>{{ .text }}</p>
</div> </div>
<div class="card-action"> <div class="card-action">
<a href="#" class="button btn-align-md accent-btn raised">{{ .buttonText }}</a> <a href="{{ .url }}" class="button btn-align-md accent-btn raised">{{ .buttonText }}</a>
</div> </div>
</div> </div>
</div> </div>