2020-09-27 00:19:35 +01:00
|
|
|
<ul class="cta-group">
|
|
|
|
{{ if (.Get "cta_text") }}
|
|
|
|
<li>
|
2021-01-06 22:20:27 +00:00
|
|
|
<a href="{{.Get "cta_link"}}" {{if eq (.Get "cta_new_tab") "true" }}target="_blank" rel="noopener"{{end}} class="btn btn-primary px-3 py-3">{{ (.Get "cta_text") | markdownify | emojify }}</a>
|
2020-09-27 00:19:35 +01:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ if (.Get "cta_alt_text") }}
|
|
|
|
<li>
|
2021-01-06 22:20:27 +00:00
|
|
|
<a href="{{.Get "cta_alt_link"}}" {{if eq (.Get "cta_alt_new_tab") "true" }}target="_blank" rel="noopener"{{end}}>
|
2020-09-27 00:19:35 +01:00
|
|
|
{{ (.Get "cta_alt_text") | markdownify | emojify }} <i class="fas fa-angle-right"></i>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{{end}}
|
|
|
|
</ul>
|