-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
55a557f
commit 2c80cf8
Showing
1 changed file
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
new: false | ||
footer: true | ||
header: true | ||
layout: templates/base.html | ||
title: Questions & Answers for Helperbird | ||
youtubeId: vwT8SAJfU3E | ||
cardTitle: Questions & Answers for Helperbird | ||
description: Common Questions about Helperbird. If you have any other questions. Please get in touch | ||
keywords: Dyslexia software, Reading Mode for Google Chrome, Voice typing for chrome, Text to speech for | ||
chrome, text reader, Immersive Reader, dyslexia fonts, accessibility software, dyslexia software, | ||
Helperbird for Edge, Helperbird for Firefox, Helperbird for Chrome, Opendyslexic for Chrome, | ||
OpenDyslexic | ||
|
||
|
||
url: questions/ | ||
--- | ||
|
||
|
||
|
||
|
||
<section class="py-24 sm:py-32" aria-labelledby="question-section"> | ||
<div class="mx-auto max-w-7xl"> | ||
<div class="text-center mb-4"> | ||
<h1 | ||
id="question-section" | ||
class="leading-relaxed font-sans text-4xl font-bold text-black sm:text-5xl" | ||
> | ||
Questions & Answers | ||
</h1> | ||
<p class="leading-relaxed font-sans mt-6 text-2xl text-black"> | ||
If you have any other questions. Please get in touch | ||
</p> | ||
|
||
|
||
</div> | ||
|
||
<div class="mt-10 space-y-8 divide-y "> | ||
<div class="join join-vertical w-full bg-white shadow-md rounded-2xl"> | ||
{%- for question in questions.helperbird -%} | ||
|
||
<div class="collapse collapse-arrow join-item border-base-300 border"> | ||
<input type="radio" name="my-accordion-4" /> | ||
<div class="collapse-title text-xl font-semibold my-2"> | ||
<h3>{{ question.question }}</h3> | ||
</div> | ||
<div class="collapse-content mt-4"> | ||
<p class="text-lg text-black">{{ question.answer }}</p> | ||
</div> | ||
</div> | ||
{%- endfor -%} | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
|