diff --git a/_config.yml b/_config.yml index d6a8417..07b4398 100644 --- a/_config.yml +++ b/_config.yml @@ -20,6 +20,10 @@ googleAnalyticsTrackingId: "UA-43643469-5" googleAnalyticsSiteUrl: "gdg-x.github.io" siteVerification: "b9imDOrFawXaBXCC4r3uJDdswSYcalD-wWpMYhFq-no" +collections: + faqs: + output: true + # Organizer Info organizerName: "GDG Lviv" organizerAlternateName: "Google Developer Group Lviv" diff --git a/_faqs/001-why-mendercon.md b/_faqs/001-why-mendercon.md new file mode 100644 index 0000000..b38a8af --- /dev/null +++ b/_faqs/001-why-mendercon.md @@ -0,0 +1,5 @@ +--- +question: "Why is the conference called MenderCon?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/002-what-is-an-unconference.md b/_faqs/002-what-is-an-unconference.md new file mode 100644 index 0000000..267f3f0 --- /dev/null +++ b/_faqs/002-what-is-an-unconference.md @@ -0,0 +1,5 @@ +--- +question: "What's an unconference?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/003-why-an-unconference.md b/_faqs/003-why-an-unconference.md new file mode 100644 index 0000000..2744a94 --- /dev/null +++ b/_faqs/003-why-an-unconference.md @@ -0,0 +1,5 @@ +--- +question: "Why an unconference?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/004-is-an-unconference-an-open-space.md b/_faqs/004-is-an-unconference-an-open-space.md new file mode 100644 index 0000000..d8bfac9 --- /dev/null +++ b/_faqs/004-is-an-unconference-an-open-space.md @@ -0,0 +1,5 @@ +--- +question: "Is an unconference the same as an Open Space?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/005-i-want-to-speak.md b/_faqs/005-i-want-to-speak.md new file mode 100644 index 0000000..e6b3317 --- /dev/null +++ b/_faqs/005-i-want-to-speak.md @@ -0,0 +1,5 @@ +--- +question: "What do I do if I want to speak? Is there a CFP?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/006-what-do-i-need-to-prepare.md b/_faqs/006-what-do-i-need-to-prepare.md new file mode 100644 index 0000000..f879e5e --- /dev/null +++ b/_faqs/006-what-do-i-need-to-prepare.md @@ -0,0 +1,5 @@ +--- +question: "What do I need to prepare to pitch a session?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/007-will-sessions-be-recorded.md b/_faqs/007-will-sessions-be-recorded.md new file mode 100644 index 0000000..36ac5aa --- /dev/null +++ b/_faqs/007-will-sessions-be-recorded.md @@ -0,0 +1,5 @@ +--- +question: "Will my session be recorded?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/008-which-sessions-should-i-attend.md b/_faqs/008-which-sessions-should-i-attend.md new file mode 100644 index 0000000..7e9c1be --- /dev/null +++ b/_faqs/008-which-sessions-should-i-attend.md @@ -0,0 +1,5 @@ +--- +question: "What do I do if I'm not sure which session to attend?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/009-what-platform-is-hosting-event.md b/_faqs/009-what-platform-is-hosting-event.md new file mode 100644 index 0000000..c10b556 --- /dev/null +++ b/_faqs/009-what-platform-is-hosting-event.md @@ -0,0 +1,5 @@ +--- +question: "What platform is being used to host the event? Why?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_faqs/010-how-can-i-help.md b/_faqs/010-how-can-i-help.md new file mode 100644 index 0000000..1cfe961 --- /dev/null +++ b/_faqs/010-how-can-i-help.md @@ -0,0 +1,5 @@ +--- +question: "How can I help?" +--- + +Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. diff --git a/_includes/faq.html b/_includes/faq.html new file mode 100644 index 0000000..088867f --- /dev/null +++ b/_includes/faq.html @@ -0,0 +1,14 @@ + +
+
+
+ {% for faq in site.faqs %} +
+
{{ faq.question }}
+

{{ faq.content }}

+
+ {% endfor %} +
+
+
+ diff --git a/faq.html b/faq.html new file mode 100644 index 0000000..92c3d6a --- /dev/null +++ b/faq.html @@ -0,0 +1,10 @@ +--- +layout: default +title: Frequently Asked Questions +permalink: /faq/ +color: "#a21f1f" +--- + +{% include top-section.html %} + +{% include faq.html %} \ No newline at end of file