diff --git a/README.md b/README.md index 2d953f44..0ceb2e0e 100755 --- a/README.md +++ b/README.md @@ -349,3 +349,26 @@ In this section, we will guide you through the steps for creating a new blog pos 5. **Save and Preview:** * Save the file, then run `jekyll serve` in your terminal to start the local server. Visit `http://localhost:4000` to preview your blog post. + +### How to create a FAQ? +In this section, we will guide you through the steps for creating a new FAQ. + +1. **Navigate to the _faqs directory:** + * In the site's main directory, open the _faqs folder. This is where all your FAQ posts are stored. + +2. **Create a New Markdown File:** + * Create a new file in the _faqs folder. + +3. **Add Front Matter:** + * At the top of your new file, add front matter between `---` lines. This metadata tells Jekyll how to handle the post. Here’s a basic template: + + ``` + --- + question: "The question you want to add" + answer: "The answer to that question" + --- + ``` + +4. **Save and Preview:** + * Save the file, then run `jekyll serve` in your terminal to start the local server. Visit `http://localhost:4000` to preview your FAQ. +