Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29ca204

Browse files
authored
Merge pull request #4 from corgibytes/add-faq-page
Add FAQ page
2 parents d9d5742 + 12ac7c4 commit 29ca204

13 files changed

+78
-0
lines changed

_config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ googleAnalyticsTrackingId: "UA-43643469-5"
2020
googleAnalyticsSiteUrl: "gdg-x.github.io"
2121
siteVerification: "b9imDOrFawXaBXCC4r3uJDdswSYcalD-wWpMYhFq-no"
2222

23+
collections:
24+
faqs:
25+
output: true
26+
2327
# Organizer Info
2428
organizerName: "GDG Lviv"
2529
organizerAlternateName: "Google Developer Group Lviv"

_faqs/001-why-mendercon.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "Why is the conference called MenderCon?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

_faqs/002-what-is-an-unconference.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "What's an unconference?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

_faqs/003-why-an-unconference.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "Why an unconference?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "Is an unconference the same as an Open Space?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

_faqs/005-i-want-to-speak.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "What do I do if I want to speak? Is there a CFP?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "What do I need to prepare to pitch a session?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "Will my session be recorded?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "What do I do if I'm not sure which session to attend?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "What platform is being used to host the event? Why?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

_faqs/010-how-can-i-help.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
question: "How can I help?"
3+
---
4+
5+
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

_includes/faq.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!-- Begin FAQ -->
2+
<section id="faq" class="faq">
3+
<div class="content-wrapper text-left">
4+
<div class="col-md-8 col-md-offset-2">
5+
{% for faq in site.faqs %}
6+
<div>
7+
<h5>{{ faq.question }}</h5>
8+
<p>{{ faq.content }}</p>
9+
</div>
10+
{% endfor %}
11+
</div>
12+
</div>
13+
</section>
14+
<!-- End FAQ -->

faq.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
title: Frequently Asked Questions
4+
permalink: /faq/
5+
color: "#a21f1f"
6+
---
7+
8+
{% include top-section.html %}
9+
10+
{% include faq.html %}

0 commit comments

Comments
 (0)