-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
561dd79
commit fa4dc00
Showing
3 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |