1
0
mirror of https://github.com/bigchaindb/site.git synced 2024-11-01 15:55:36 +01:00
site/_src/_layouts/page.html

55 lines
1.6 KiB
HTML

---
layout: base
---
<header role="banner" class="header" {% if page.image %}style="background-image:url('/assets/img/{{ page.image }}')"{% endif %}>
{% include menu-main.html %}
<div class="row">
<h1 class="header__title">
{% if page.tagline %}
{{ page.tagline }}
{% else %}
{{ page.title }}
{% endif %}
</h1>
</div>
</header>
<section role="main" class="content content--page">
{% if page.path contains '.md' %}
<div class="row content--page--markdown">
{% endif %}
{{ content }}
{% if page.path contains '.md' %}
</div>
{% endif %}
</section>
{% if page.title == "Whitepaper" %}
<section class="section section-whitepaper-download background--photo">
<div class="row">
<header class="section-header">
<h1 class="section-title">{{ page.whitepaper.title }}</h1>
<p class="section-description">{{ page.whitepaper.text }}</p>
</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>
{% include sections/section-newsletter.html %}
{% include sections/section-cta-community.html %}
{% endif %}