mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-01 15:55:36 +01:00
27 lines
449 B
HTML
27 lines
449 B
HTML
---
|
|
layout: base
|
|
---
|
|
|
|
<header role="banner" class="header">
|
|
|
|
{% include menu-main.html %}
|
|
|
|
<div class="row">
|
|
<h1 class="header__title">{{ page.title }}</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>
|