1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-25 11:08:29 +01:00
site/_src/_includes/sections/section-cta.html

19 lines
544 B
HTML
Raw Normal View History

2018-04-10 17:50:24 +02:00
{% if layout %}
{% assign context = layout %}
{% else %}
{% assign context = page %}
{% endif %}
2018-04-05 15:08:48 +02:00
<section class="section section-cta background--photo text-center">
2017-03-28 14:22:01 +02:00
<div class="row">
<header class="section-header">
2018-04-10 17:50:24 +02:00
<h1 class="section-title">{{ context.cta.title }}</h1>
<p class="section-description">{{ context.cta.description }}</p>
2017-03-28 14:22:01 +02:00
</header>
2018-04-10 17:50:24 +02:00
<a class="btn btn-primary" href="{{ context.cta.button_link }}">
{{ context.cta.button }}
2017-03-28 14:22:01 +02:00
</a>
</div>
</section>