-
Notifications
You must be signed in to change notification settings - Fork 34
/
faq.html
29 lines (25 loc) · 957 Bytes
/
faq.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: default
title: Tari | FAQ
permalink: /faq/
class: subpage
---
<section class="main faq">
<div id="faq" style="max-width: var(--max-content-width);">
<div class="new-section">
<h1>Frequently Asked Questions</h1>
</div>
<p>Below are answers to a few common questions about the Tari protocol. For other questions or additional clarity, please post your questions to the Tari community on <a href="https://discord.gg/tari" target="_blank">Discord</a>.</p>
<div class="row justify-content-center" style="margin-top: 80px;">
<div class="col-lg-12 col-xl-12">
{% for faq in site.data.faq %}
<div class="faq-container faq-not-active">
<img class="arrow" src="{{ site.baseurl }}/assets/img/arrow.svg">
<h3 style="margin: 0px;" id="{{ faq.id }}">{{ faq.title }}</h3>
<div>{{ faq.text | markdownify }}</div>
</div>
{% endfor %}
</div>
</div>
</div>
</section>