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

25 lines
778 B
HTML
Raw Normal View History

2017-08-22 01:25:42 +02:00
---
layout: page
2017-08-23 19:03:54 +02:00
title: Frequently Asked Questions
2017-08-22 01:25:42 +02:00
---
<section class="section section--faq">
<div class="row">
<div class="faq-contents">
{% for faq in site.data.faq %}
<h1 class="faq-contents__title"><a href="#{{ faq.question | downcase | replace: ' ','-' | replace: '?', '' }}" data-scroll>{{ faq.question }}</a></h1>
2017-08-22 01:25:42 +02:00
{% endfor %}
</div>
<div class="faq content--page--markdown">
2017-08-22 01:25:42 +02:00
{% for faq in site.data.faq %}
<h1 class="faq__question" id="{{ faq.question | downcase | replace: ' ','-' | replace: '?', '' }}">{{ faq.question }}</h1>
<div class="faq__answer">{{ faq.answer | markdownify }}</div>
{% endfor %}
</div>
</div>
</section>