-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
49 lines (23 loc) · 975 Bytes
/
faq.html
File metadata and controls
49 lines (23 loc) · 975 Bytes
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: base
permalink: /faq/
---
<div class="o-bleed u-df u-my2">
<div class="js-sticky-sidebar c-sidebar t-dark">
<div class="c-sidebar__inner o-bg">
<h2 class="u-type-h6 c-sidebar__heading cms-editor-link">FAQ</h2>
<ul class="c-sidebar__links">
{% assign faqs = site.faq | sort: "faqid" %}{% for faq in faqs %}
<li class="u-type-tinier c-sidebar__link"><a class="c-link" href="#{{ faq.href }}">{{ faq.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
<div class="o-text-column o-text-column--beside-column@mobile-menu-up u-pr1">
{% assign faqs = site.faq | sort: "faqid" %}{% for faq in faqs %}
<h2 class="u-type-h5" id="{{ faq.href }}">{{ faq.title }}</h2>
<div class="u-type-body"><p>{{ faq.content }}</p>
</div>
{% endfor %}
</div>
</div>