Skip to content

Commit

Permalink
feature: FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
gokulprathin8 committed Jun 13, 2024
1 parent 561dd79 commit fa4dc00
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
3 changes: 1 addition & 2 deletions content/english/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
11 changes: 11 additions & 0 deletions content/english/faq/_index.md
Original file line number Diff line number Diff line change
@@ -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."
---
21 changes: 21 additions & 0 deletions themes/geoweaver/layouts/faq/faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{{ define "main" }}


<section>
<div class="container">

<h1 class="font-mono text-center pt-10 tracking-wide">FAQ</h1>
<div class="pt-5">
<h4>Common Questions</h4>
<hr/>


<div>
{{ range $index, $faq := .Params.faqDetails}}
<p class="font-bold text-xl pt-10">Q: {{.question}}</p>
<p>{{.answer}}</p>
{{ end }}
</div>
</section>

{{ end }}

0 comments on commit fa4dc00

Please sign in to comment.