1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-06-10 20:00:25 +02:00
site/_src/_includes/sections/section-whitepaper-download.html

18 lines
843 B
HTML
Raw Normal View History

2018-05-16 12:47:54 +02:00
<section class="section section--whitepaper-download background--photo">
2018-05-16 11:35:07 +02:00
<div class="row">
<header class="section-header">
<h1 class="section-title">{{ page.whitepaper.title }}</h1>
2018-05-16 12:47:54 +02:00
{% if page.whitepaper.text %}
<p class="section-description">{{ page.whitepaper.text }}</p>
{% endif %}
2018-05-16 11:35:07 +02:00
</header>
<p class="text-center">
{% for whitepaper in page.whitepaper.files %}
<a href="{{ whitepaper.file }}" class="btn btn-primary js-tracking-whitepaper-download"><svg class="icon"><use xlink:href="/assets/img/sprite.svg#icon-documents"></use></svg> {{ whitepaper.button }}</a>
{% endfor %}
</p>
<p class="text-center small">Last updated: {{ page.whitepaper.updated | date: '%B %d, %Y' }}</p>
</div>
</section>