Skip to content

Commit 6c7c3b5

Browse files
KeiranWDigitaldangerworm
authored andcommitted
Start of the FAQ page
1 parent 5300bf5 commit 6c7c3b5

File tree

3 files changed

+83
-1
lines changed

3 files changed

+83
-1
lines changed

_includes/sidebar.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,12 @@
6363
<span>Feedback</span>
6464
</a>
6565
</li>
66+
<li class="sidebar-dropdown">
67+
<a href="{{site.url}}/faq">
68+
<i class="fas fa-question"></i>
69+
<span>FAQ</span>
70+
</a>
71+
</li>
6672
<li class="sidebar-dropdown">
6773
<a href="{{site.url}}/branding">
6874
<i class="fas fa-palette"></i>
@@ -78,4 +84,4 @@
7884
</ul>
7985
</div>
8086
</div>
81-
</nav>
87+
</nav>

css/style.css

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,20 @@ div.event-book-button {
419419
font-size: 1.2em;
420420
}
421421

422+
/*FAQ*/
423+
424+
.faq-question{
425+
color:var(--colour-light-primary)
426+
}
427+
428+
.faq-question:hover {
429+
color:var(--colour-dark-primary)
430+
}
431+
432+
.faq-question-card{
433+
margin-left:0;
434+
}
435+
422436
/* Branding */
423437
.white-asset {
424438
background-color: var(--colour-dark-primary);

faq.html

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
permalink: /faq/
3+
layout: default
4+
suffixes:
5+
- Help,
6+
- Questions,
7+
- Support,
8+
- Us
9+
title: FAQ
10+
---
11+
12+
<h1>{{page.title}}</h1>
13+
14+
<p>Below are some questions we often get asked. If you have any other questions you can reach us on the <a href="{{site.url}}/contact">contact page</a>.</p>
15+
16+
<div id="accordion">
17+
<div class="card faq-question-card">
18+
<div class="card-header" id="headingOne">
19+
<h5 class="mb-0">
20+
<button class="btn btn-link faq-question" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
21+
Collapsible Group Item #1
22+
</button>
23+
</h5>
24+
</div>
25+
26+
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordion">
27+
<div class="card-body">
28+
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
29+
</div>
30+
</div>
31+
</div>
32+
<div class="card faq-question-card">
33+
<div class="card-header" id="headingTwo">
34+
<h5 class="mb-0">
35+
<button class="btn btn-link faq-question collapsed" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
36+
Collapsible Group Item #2
37+
</button>
38+
</h5>
39+
</div>
40+
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordion">
41+
<div class="card-body">
42+
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
43+
</div>
44+
</div>
45+
</div>
46+
<div class="card faq-question-card">
47+
<div class="card-header" id="headingThree">
48+
<h5 class="mb-0">
49+
<button class="btn btn-link faq-question collapsed" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
50+
Collapsible Group Item #3
51+
</button>
52+
</h5>
53+
</div>
54+
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordion">
55+
<div class="card-body">
56+
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
57+
</div>
58+
</div>
59+
</div>
60+
</div>
61+
62+

0 commit comments

Comments
 (0)