From fa4dc0090133e3202a51e3b036c9239c3b32f877 Mon Sep 17 00:00:00 2001 From: Gokul Prathin Date: Thu, 13 Jun 2024 18:58:45 -0400 Subject: [PATCH] feature: FAQ --- content/english/_index.md | 3 +-- content/english/faq/_index.md | 11 +++++++++++ themes/geoweaver/layouts/faq/faq.html | 21 +++++++++++++++++++++ 3 files changed, 33 insertions(+), 2 deletions(-) create mode 100644 content/english/faq/_index.md create mode 100644 themes/geoweaver/layouts/faq/faq.html diff --git a/content/english/_index.md b/content/english/_index.md index 9e90ad3..ad1fb0b 100755 --- a/content/english/_index.md +++ b/content/english/_index.md @@ -58,8 +58,7 @@ banner: features: - title: "What is Geoweaver?" image: "/images/service-1.png" - content: "Geoweaver is an open-source, in-browser software designed for simplifying the composition and execution of data processing workflows. It efficiently leverages high-performance servers for workflow execution and includes features such as code history and workflow orchestration, easing the creation and maintenance of workflows. -" + content: "Geoweaver is an open-source, in-browser software designed for simplifying the composition and execution of data processing workflows. It efficiently leverages high-performance servers for workflow execution and includes features such as code history and workflow orchestration, easing the creation and maintenance of workflows." - title: "PyGeoweaver" image: "/images/service-2.png" content: "PyGeoweaver is a Python wrapper of Geoweaver workflow management system. It enables users to interact with Geoweaver workflows programmatically, offering full Geoweaver functionality, including workflow orchestration, code history/versioning, and server management." diff --git a/content/english/faq/_index.md b/content/english/faq/_index.md new file mode 100644 index 0000000..7c7fdc2 --- /dev/null +++ b/content/english/faq/_index.md @@ -0,0 +1,11 @@ +--- +title: "FAQ" +meta_title: "Common Questions" +description: "" +draft: false + + +faqDetails: + - question: "What is Geoweaver?" + answer: "Geoweaver is an open-source platform that enables the ad hoc management, open sharing, and robust reuse of NASA Earth data-driven hybrid AI workflows. Geoweaver is designed to help scientists and engineers to automate the process of creating, executing, and sharing complex workflows that involve a combination of AI and geospatial data processing tasks." +--- diff --git a/themes/geoweaver/layouts/faq/faq.html b/themes/geoweaver/layouts/faq/faq.html new file mode 100644 index 0000000..85f5d07 --- /dev/null +++ b/themes/geoweaver/layouts/faq/faq.html @@ -0,0 +1,21 @@ +{{ define "main" }} + + +
+
+ +

FAQ

+
+

Common Questions

+
+ + +
+ {{ range $index, $faq := .Params.faqDetails}} +

Q: {{.question}}

+

{{.answer}}

+ {{ end }} +
+
+ +{{ end }}