mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 17:50:07 +01:00
21 lines
608 B
HTML
21 lines
608 B
HTML
<header role="banner" class="header"
|
|
{% if page.header %}
|
|
{% if page.path contains '_guides' %}
|
|
style="background-image:url('../{{ page.header }}')"
|
|
{% else %}
|
|
style="background-image:url('/assets/img/{{ page.header }}')"
|
|
{% endif %}
|
|
{% endif %}>
|
|
|
|
{% include menu-main.html %}
|
|
|
|
<div class="row">
|
|
<div class="header__content">
|
|
<h1 class="header__title">{{ page.title }}</h1>
|
|
{% if page.tagline %}
|
|
<h2 class="header__tagline">{{ page.tagline }}</h2>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</header>
|